-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
49 lines (49 loc) · 1.05 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
{
"manifest_version": 2,
"name": "Pinned Bing Chat",
"short_name": "Bing Pin",
"author": "Vito Ferri",
"version": "1.0.2",
"description": "Go to the pinned Chat tab. If it doesn't exist, it's created.",
"icons": {
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"64": "icons/icon-64.png",
"128": "icons/icon-128.png"
},
"web_accessible_resources": ["icons/*"],
"permissions": [
"webRequest",
"webRequestBlocking",
"tabs",
"storage",
"http://*.bing.com/*",
"https://*.bing.com/*"
],
"browser_action": {
"default_icon": {
"32": "icons/icon-32.png"
},
"default_title": "Pinned Bing Chat",
"default_area": "navbar"
},
"background": {
"scripts": ["background.js"]
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+Shift+B"
}
}
},
"options_ui": {
"page": "options/options.html",
"browser_style": true
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
}