-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
40 lines (40 loc) · 1.04 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
{
"name" : "Bluz Toolbar",
"version" : "2.0.1",
"description" : "Plugin for PHP developers of Bluz framework https://github.com/bluzphp",
"manifest_version" : 2,
"icons" : {
"128": "images/bluz-128.png",
"64": "images/bluz-64.png",
"48": "images/bluz-48.png",
"16": "images/bluz-16.png"
},
"browser_action" : {
"default_icon" : "images/bluz-48.png"
},
"options_ui" : {
"page" : "html/options.html",
"chrome_style" : true
},
"background" : {
"page" : "html/background.html"
},
"devtools_page": "html/devtools.html",
"content_scripts" : [{
"matches" : [ "http://*/*","https://*/*" ],
"css" : [],
"js" : [ "js/inject.js"],
"run_at" : "document_start"
}],
"web_accessible_resources" : [
"html/iframe/*"
],
"permissions" : [
"cookies",
"tabs",
"webRequest",
"storage",
"http://*/*",
"https://*/*"
]
}