forked from WorldBrain/Memex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
73 lines (73 loc) · 1.79 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
{
"name": "WorldBrain's Memex",
"short_name": "Memex",
"version": "0.3.3",
"offline_enabled": true,
"description": "Search, annotate and organize what you've read online.",
"background": {
"scripts": ["lib/browser-polyfill.js", "background.js"]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["lib/browser-polyfill.js", "content_script.js"],
"css": ["/content_script.css"],
"run_at": "document_start"
},
{
"matches": ["*://twitter.com/*"],
"js": ["twitter.js"]
}
],
"browser_action": {
"default_title": "WorldBrain's Memex",
"default_popup": "./popup.html"
},
"commands": {
"openOverview": {
"description": "Open Search Overview"
}
},
"applications": {
"gecko": {
"id": "info@worldbrain.io"
}
},
"icons": {
"16": "./img/worldbrain-logo-narrow-bw-16.png",
"48": "./img/worldbrain-logo-narrow-bw-48.png",
"128": "./img/worldbrain-logo-narrow-bw.png"
},
"permissions": [
"<all_urls>",
"alarms",
"idle",
"bookmarks",
"contextMenus",
"downloads",
"history",
"tabs",
"webNavigation",
"notifications",
"unlimitedStorage",
"storage",
"webRequest",
"webRequestBlocking"
],
"web_accessible_resources": [
"/lib/pdf.worker.min.js",
"/img/*",
"/content_script.css",
"/twitter.css",
"/fonts/*",
"sidebar.html"
],
"omnibox": {
"keyword": "m"
},
"options_ui": {
"page": "./options.html#/settings",
"open_in_tab": true
},
"manifest_version": 2
}