-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
33 lines (33 loc) · 1.03 KB
/
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
{
"manifest_version": 2,
"name": "Главред",
"description": "Помогает очистить текст от словесного мусора, проверяет на соответствие информационному стилю.",
"version": "1.5",
"icons": {
"16": "images/icons/icon16.png",
"48": "images/icons/icon48.png",
"128": "images/icons/icon128.png",
"300": "images/icons/icon.png"
},
"browser_action": {
"default_icon": "images/icons/icon.png",
"default_popup": "popup.html"
},
"background": {
"scripts": ["scripts/background.js"]
},
"content_scripts":[{
"matches": ["http://glvrd.ru/*", "https://glvrd.ru/*"],
"js": ["vendors/jquery-2.1.4.min.js", "scripts/content_script_glvrd.js"],
"run_at": "document_start"
}, {
"matches": ["<all_urls>"],
"js": ["scripts/content_script_all.js"]
}],
"permissions": [
"tabs",
"contextMenus",
"<all_urls>"
],
"content_security_policy": "script-src 'self' https://api.glvrd.ru; object-src 'self'"
}