-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
45 lines (45 loc) · 884 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
{
"manifest_version": 2,
"name": "Google Custom Toolbar",
"description": "This extension provides an easier way to access Google tools",
"version": "3.0",
"options_page": "options.html",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "options.html",
"default_title": "Google Custom Toolbar"
},
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"background": {
"scripts": [
"jquery.min.js",
"actions.js"
]
},
"content_scripts": [
{
"matches": [
"https://*.google.com/*"
],
"js": [
"jquery.min.js",
"actions.js"
],
"run_at": "document_end"
}
],
"permissions": [
"activeTab",
"storage",
"tabs",
"https://*.google.com/*"
]
}