-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
executable file
·38 lines (38 loc) · 961 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
{
"name": "Debugger Shortcut",
"version": "0.2.5",
"manifest_version": 2,
"description": "Stop javascript execution by pressing a keyboard shortcut.",
"homepage_url": "http://github.com/vxsx/debugger-shortcut-extension",
"icons": {
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"background": {
"scripts": [
"src/bg/background.js"
],
"persistent": true
},
"page_action": {
"default_icon": "icons/icon38.png",
"default_title": "Options for Debugger Shortcut.",
"default_popup": "src/page_action/page_action.html"
},
"permissions": [
"http://*/*",
"https://*/*",
"storage"
],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"src/inject/inject.js"
]
}
]
}