-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
executable file
·79 lines (78 loc) · 1.98 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
71
72
73
74
75
76
77
78
79
{
"name": "Kaltura Custom Extension",
"version": "0.0.46",
"manifest_version": 2,
"description": "This extension was created to maximize efficiency within the Customer Care team, created by Omri Katz.",
"homepage_url": "https://github.com/omridevk/CCExtension",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_locale": "en",
"background": {
"page": "src/bg/background.html",
"persistent": true
},
"browser_action": {
"default_icon": "icons/icon19.png",
"default_title": "Kaltura Customer Care's extension",
"default_popup": "src/browser_action/browser_action.html"
},
"options_page": "src/options_custom/index.html",
"commands": {
"duplicate-tab": {
"suggested_key": {
"windows": "Ctrl+Shift+D",
"mac": "MacCtrl+Shift+D"
},
"description": "Duplicate the current tab."
},
"add-template": {
"suggested_key": {
"windows": "Ctrl+Shift+A",
"mac": "MacCtrl+Shift+A"
},
"description": "Attach the template to the page."
},
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+E",
"mac": "MacCtrl+Shift+E"
}
}
},
"permissions": [
"contextMenus",
"webRequest",
"https://*/*",
"http://*/*",
"storage",
"clipboardRead",
"clipboardWrite",
"tabs",
"activeTab"
],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"content_scripts": [
{
"matches": [
"*://kaltura.atlassian.net/*",
"*://*.salesforce.com/*",
"*://*.force.com/*",
"*://kmc.kaltura.com/*"
],
"js": [
"js/jquery/jquery.min.js",
"js/foundation/foundation.min.js",
"js/autolinker/Autolinker.js",
"src/inject/inject.js"
],
"run_at": "document_end",
"all_frames": true,
"css": [
"css/injectStyles.css"
]
}
]
}