-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
75 lines (72 loc) · 1.77 KB
/
manifest.json
File metadata and controls
75 lines (72 loc) · 1.77 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "Cloudinary",
"version": "1.0",
"description": "yalla hachi ten barosh",
"permissions": [
"<all_urls>",
"storage",
"webRequest",
"webRequestBlocking"
],
"background": {
"page": "background.html"
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"css": ["styles.css"],
"js": [
"./modules/lodash.js",
"./contentScript/shared.js",
"./contentScript/utils.js",
"./contentScript/panel.js",
"./contentScript/icons.js",
"./contentScript/modal.js",
"selectors.js",
"contentScript.js",
"pageManager.js"
]
}
],
"manifest_version": 2
}
// {
// "name": "Getting Started Example",
// "version": "1.0",
// "description": "Build an Extension!",
// "permissions": [
// "activeTab",
// "declarativeContent",
// "storage",
// "webRequest",
// "*://developer.mozilla.org/"
// ],
// "options_page": "options.html",
// "background": {
// "scripts": ["background.js"],
// "persistent": true
// },
// // "page_action": {
// // "default_popup": "popup.html",
// // "default_icon": {
// // "16": "images/get_started16.png",
// // "32": "images/get_started32.png",
// // "48": "images/get_started48.png",
// // "128": "images/get_started128.png"
// // }
// // },
// "icons": {
// "16": "images/get_started16.png",
// "32": "images/get_started32.png",
// "48": "images/get_started48.png",
// "128": "images/get_started128.png"
// },
// "manifest_version": 2
// // "content_scripts": [
// // {
// // "matches": ["http://*/*", "https://*/*"],
// // "css": ["style.css"],
// // "js": ["contentScript.js"]
// // }
// // ]
// }