-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
35 lines (35 loc) · 855 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
{
"manifest_version": 2,
"name": "UA Shuffler",
"description": "This extension shuffles trough request heder values.",
"version": "0.0.1",
"icons": {
"16": "/images/shuffle_x16.png",
"32": "/images/shuffle_x32.png",
"48": "/images/shuffle_x48.png",
"128": "/images/shuffle_x128.png"
},
"options_page": "options/options.html",
"browser_action": {
"default_icon": {
"16": "/images/shuffle_x16.png",
"32": "/images/shuffle_x32.png",
"48": "/images/shuffle_x48.png",
"128": "/images/shuffle_x128.png"
},
"default_title": "UA Shuffler",
"default_popup": "popup/popup.html"
},
"background": {
"scripts": ["background.js"],
"persistent": true
},
"permissions": [
"tabs",
"activeTab",
"storage",
"webRequest",
"webRequestBlocking",
"<all_urls>"
]
}