-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
42 lines (36 loc) · 884 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
{
"manifest_version": 2,
"name": "Easy Word Replacer",
"description": "Easy Recursive Word Replacer, that will help you defeat Coronavirus",
"version": "0.01",
"developer": {
"name": "Enji Rouz",
"url": "https://github.com/EnjiRouz"
},
"icons": {
"16": "resources/icon16.png",
"48": "resources/icon48.png",
"128": "resources/icon128.png"
},
"permissions": [
"storage",
"http://*/*",
"https://*/*",
"tabs",
"contextMenus"
],
"background": {
"scripts": ["content.js"],
"persistent": true
},
"browser_action": {
"default_icon": "resources/icon128.png",
"default_popup": "popup.html",
"icon_128": "resources/icon128.png"
},
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["content.js"]
}],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';"
}