-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathmanifest.json
70 lines (69 loc) · 2.3 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
61
62
63
64
65
66
67
68
69
70
{
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "1.4.134",
"name": "Tabs Outliner",
"description": "The Next Generation Session Manager; A Really Working Too Many Open Tabs Solution; And Your Browsing Notebook.",
"minimum_chrome_version": "42.0.0.0",
"background": {
"scripts": [
"libs/classinheritance.js",
"tree/js/dboperations.js",
"tree/js/treemodel.js",
"signaturevalidator.js",
"background.js",
"backup/background-backup.js"
]
},
"icons": {
"16": "img/favicon.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"browser_action": {
"default_title": "Tabs Outliner",
"default_icon": "img/icon.png"
},
"oauth2": {
"client_id": "264571147925-gl2i51b5j91lkd21gojr9jh06kp2gos3.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/drive.appdata"
]
},
"permissions": [
"notifications",
"storage",
"tabs",
"unlimitedStorage",
"idle",
"chrome://favicon/",
"identity"
],
"optional_permissions": [
"identity.email",
"clipboardRead",
"clipboardWrite"
],
"default_locale": "en",
"options_page": "options.html",
"manifest_version": 2,
"web_accessible_resources": [
"*",
"tree/js/treeview.js",
"activesessionview.js"
],
"content_security_policy": "script-src 'self' https://www.google-analytics.com https://connect.facebook.net https://apis.google.com https://platform.twitter.com; object-src 'self';",
"offline_enabled": true,
"key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDTFjLkWlVbRsd0qJrg1Wgk/T+XtMulOxKQDm4FVwjTCWbD8qpfnA8xVvGuWhQqzWHmqlRfY3IAqeVJd4/hEQr5ZpXNBa25+GAzjFT/pykj7oVPXArswhJWx/WuTUMqmIIFuoehFBNQ8bbGj6X1DZ5KwbJf7MD4JQYEr6AuK49T5wIDAQAB",
"commands": {
"save_close_current_tab": {
"description": "Save and Close current tab"
},
"save_close_current_window": {
"description": "Save and Close current window"
},
"save_close_all_windows": {
"description": "Save and Close all open windows"
},
"_execute_browser_action": {}
}
}