-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathmanifest.json
executable file
·45 lines (38 loc) · 931 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": "Parameters Editor",
"version": "1.7",
"description": "Shows parameters used in the URL and allows to update, export and import them ",
"permissions": [
"activeTab",
"tabs", "<all_urls>",
"storage"
],
"background": {
"scripts": ["src/background.js", "src/common.js"],
"persistent": false
},
"commands": {
"_execute_page_action": {
"suggested_key": {
"windows": "Ctrl+Shift+1",
"mac": "Command+Shift+1",
"chromeos": "Ctrl+Shift+1",
"linux": "Ctrl+Shift+1"
}
}
},
"page_action": {
"default_title": "Show/Edit parameter for this URL",
"default_icon": "images/icon.png",
"default_popup": "src/popup.html"
},
"options_ui": {
"page": "src/options.html",
"browser_style": true,
"chrome_style": true
},
"icons": {
"127": "images/icon128.png"
}
}