-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
70 lines (64 loc) · 2.02 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
{
"content_scripts": [
{ "js": ["jq331.js", "draggable.js", "content.js","keepopen.js"],
"css": ["youtube-button.css"],
"matches": ["http://*/*", "https://*/*"],
"run_at": "document_start"
}
],
"background": {
"scripts": ["bg.js"]
},
"browser_action": {
"default_icon": "128.png",
"default_popup": "popup.html"
},
"web_accessible_resources": [
"capture.js",
"popup.css",
"youtube-button.css"
],
"description": "Snapshot youtube and find out who the celebrity is.",
"icons": {
"128": "128.png",
"16": "16.png",
"48": "48.png"
},
"manifest_version": 2,
"content_security_policy": "script-src 'self' https://sdk.clarifai.com/js/clarifai-latest.js https://code.jquery.com/jquery-3.3.1.min.js https://www.google.com/; object-src 'self'" ,
"name": "ClarifAi my video snapshot",
"permissions": [ "activeTab", "downloads", "<all_urls>","tabs", "storage","webNavigation",
"notifications",
"http://*/",
"https://*/"
],
"commands": {
"hotkey for extension": {
"suggested_key": {
"default": "Ctrl+Space",
"mac": "Command+Shift+A"
},
"description": "hotkey for extension",
"global": true
},
"_execute_browser_action": {
"suggested_key": {
"windows": "Ctrl+Space",
"mac": "Command+Shift+A",
"chromeos": "Ctrl+Shift+A",
"linux": "Ctrl+Shift+A"
}
},
"_execute_page_action": {
"suggested_key": {
"default": "Ctrl+Shift+E",
"windows": "Alt+Shift+P",
"mac": "Alt+Shift+P"
}
}
},
"version": "0.1.6",
"externally_connectable": {
"matches": ["*://*.youtube.com/*"]
}
}