-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
52 lines (50 loc) · 980 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
49
50
{
"name": "PageFly",
"version": "0.0.7",
"manifest_version": 2,
"description": "PageFly - Advanced PageBuilder",
"icons": {
"16": "icons/icon-16.png",
"128": "icons/icon-128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"scripts/background.js"
],
"persistent": true
},
"permissions": [
"storage",
"tabs",
"webRequest",
"webNavigation",
"http://*/*",
"https://*/*"
],
"options_ui": {
"page": "options.html"
},
"web_accessible_resources": ["scripts/inject.js"],
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*"
],
"js": [
"scripts/contentscript.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"browser_action": {
"default_icon": {
"19": "icons/icon-19.png",
"38": "icons/icon-38.png"
},
"default_title": "PageFly App",
"default_popup": "popup.html"
}
}