forked from DanielTillett/CutSpel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
34 lines (33 loc) · 1010 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
{
"manifest_version": 2,
"name": "Simplified Spelling",
"short_name": "Simplified Spelling",
"icons": { "48": "ON.png",
"128": "ON.png" },
"permissions": ["storage"],
"description": "Try simplified spelling in your web browser!",
"version": "1.1.1",
"author": "Mark Petersen",
"homepage_url": "https://github.com/mark-petersen/simplifiedSpelling",
"background":{
"scripts":["jquery-1.11.1.min.js", "background.js"]
},
"options_page":"options.html",
"content_scripts": [
{
"matches": ["<all_urls>"],
"exclude_globs": ["*google.com*"],
"js": ["jquery-1.11.1.min.js", "context-script.js" ]
}
],
"browser_action": {
"default_icon": {
"19": "ON.png",
"38": "ON.png"
}
},
"web_accessible_resources": [
"jquery-1.11.1.min.map"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}