-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
48 lines (48 loc) · 1008 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
48
{
"manifest_version": 2,
"name": "SpellScape",
"version": "0.0.1",
"description": "Helps You Provide Translated Strings to KissFlow",
"icons": {
"128": "icon/icon128.png"
},
"background": {
"scripts": [
"js/background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": "icon/icon128.png",
"default_popup": "browser_action/popup.html",
"default_title": "Spell it with SpellScape"
},
"content_scripts": [
{
"matches": [
"http://localhost/*"
],
"css": [
"css/spellscape.css"
],
"js": [
"js/content.js",
"js/jquery.min.js",
"js/spellscape.js"
]
}
],
"web_accessible_resources": [
"spellscape/spellscape.html"
],
"author": "OrangeScape",
"homepage_url": "http://orangescape.com",
"permissions": [
"activeTab",
"https://ajax.googleapis.com/",
"storage"
],
"externally_connectable": {
"matches": ["http://localhost/*"]
}
}