-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
60 lines (60 loc) · 1.75 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
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
{
"name": "SEO4Ajax Companion",
"description": "SEO4Ajax Companion allows testing the Google Ajax Scheme implementation directly in your browser",
"version": "1.0.15",
"permissions": [
"tabs",
"storage",
"webRequest",
"webRequestBlocking",
"http://*/*",
"https://*/*"
],
"icons": {
"16": "icons/icon-16.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"background": {
"scripts": [
"scripts/init.js",
"scripts/configuration.js",
"scripts/bgpage/misc/netfilters.js",
"scripts/bgpage/tabs.js",
"scripts/bgpage/network.js",
"scripts/bgpage/welcome.js",
"scripts/bgpage/business.js",
"scripts/bgpage/ui.js",
"scripts/bgpage/index.js"
]
},
"content_scripts": [
{
"all_frames": false,
"js": [
"scripts/init.js",
"scripts/configuration.js",
"scripts/content/misc/minhash.js",
"scripts/content/misc/tokenizer.js",
"scripts/content/bgpage.js",
"scripts/content/url.js",
"scripts/content/webpage.js",
"scripts/content/business.js",
"scripts/content/index.js"
],
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_start"
}
],
"options_page": "ui/options.html",
"browser_action": {
"default_title": "Click to enable/disable SEO4Ajax Companion",
"default_icon": {
"38": "icons/icon-38-default.png"
}
},
"manifest_version": 2
}