-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
47 lines (47 loc) · 968 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
46
47
{
"name": "Prrrowser",
"description": "Browser extension that replaces images with similar images showing cats",
"version": "0.4",
"manifest_version": 2,
"applications": {
"gecko": {
"id": "{2223e174-ae31-4b4c-a562-ae61043c947a}"
}
},
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"browser_action": {
"default_icon": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
}
},
"permissions": [
"storage",
"contextMenus",
"tabs",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"all_frames": true,
"match_about_blank": true,
"run_at": "document_start",
"js": ["content.js"]
}
],
"options_ui": {
"page": "options.html",
"chrome_style": true
}
}