-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
45 lines (37 loc) · 1020 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"manifest_version": 2,
"name": "DragOnWeb",
"version": "2.1.0",
"author": "itaj jelodari <iraj.jelo@gmail.com>",
"description": "Enables dragging scroll on the web pages. to enable or disable the feature just click on the grabbing button in the toolbar>. please see the github page to contribute",
"homepage_url": "https://github.com/iraj-jelo/drag-on-web",
"icons": {
"48": "icons/grabbing-48.png",
"96": "icons/grabbing-96.png"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"css": [],
"js": ["js/main.js"],
"run_at": "document_end"
}
],
"developer": {
"name": "iraj jelodari",
"url": "http://iraj.rocks"
},
"background": {
"scripts": ["background.js"]
},
"options_ui": {
"page": "options/options.html"
},
"permissions": ["activeTab", "tabs", "storage", "<all_urls>", "webRequest"],
"browser_action": {
"default_icon": {
"16": "icons/grabbing-16.png",
"32": "icons/grabbing-32.png"
}
}
}