-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathmanifest.json
More file actions
60 lines (54 loc) · 1.56 KB
/
manifest.json
File metadata and controls
60 lines (54 loc) · 1.56 KB
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
{
"manifest_version": 2,
"name": "OneNote Web Clipper",
"description": "__MSG_appDesc__",
"default_locale": "en",
"version": "3.9.5",
"background": {
"scripts": ["chromeExtension.js"]
},
"content_scripts": [{
"matches": ["https://onenote.officeapps.live.com/*", "https://ppc-onenote.officeapps.live.com/*", "https://onenote.officeapps-df.live.com/*", "https://onenote.officeapps.live-int.com/*"],
"js": ["appendIsInstalledMarker.js"],
"run_at": "document_start",
"all_frames": true
}, {
"matches": ["<all_urls>"],
"js": ["contentScript.js"],
"run_at": "document_end",
"all_frames": true
}],
"web_accessible_resources": [
"clipper.html",
"pageNav.html"
],
"permissions": [
"<all_urls>",
"activeTab",
"contextMenus",
"tabs",
"webRequest",
"storage",
"webNavigation",
"nativeMessaging"
],
"content_security_policy": "script-src 'self'; object-src 'self'",
"browser_action": {
"default_title": "Clip to OneNote",
"default_icon": {
"19": "icons/icon-19.png",
"38": "icons/icon-38.png"
}
},
"icons": {
"16": "icons/icon-16.png",
"19": "icons/icon-19.png",
"32": "icons/icon-32.png",
"38": "icons/icon-38.png",
"48": "icons/icon-48.png",
"64": "icons/icon-64.png",
"96": "icons/icon-96.png",
"128": "icons/icon-128.png",
"256": "icons/icon-256.png"
}
}