forked from marani/midas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
40 lines (36 loc) · 981 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
{
"manifest_version" : 2,
"name": "Hand Tool",
"description": "Use your Mouse or Stylus to smoothly pan web pages, bringing Photoshop Hand Tool to the web!",
"version": "1.4.0",
"permissions": [
"tabs",
"http://*/*",
"https://*/*",
"storage"
],
"icons": {"128": "hand-pointer.png"},
"browser_action": {
"default_icon": "hand-pointer.png",
"default_popup": "popup.html"
},
"commands":{
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+1",
"mac": "MacCtrl+Shift+F"
}
}
},
"background": {
"scripts": ["mm.bg.js"]
},
"options_page": "option.html",
"content_scripts": [{
"js": ["mm.content.scroll.js"],
"matches": ["<all_urls>"]
}],
"web_accessible_resources": [
"mm.inpage.js", "jquery.min.js", "openhand.cur", "closedhand.cur"
]
}