-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
75 lines (75 loc) · 2.24 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
{
"manifest_version": 3,
"name": "Replay",
"author": "Bhavin Kamani",
"version": "0.0.1",
"description": "Spotlight for your browser history",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAotSX29Wp4q5TmPsjaLCu4hpRUzLk2a+C7/u1cpCaPNQg2m+h5+rnIdvUGq10TUWoLg/+AkR4P1F8Wffi9jHGK11iSo8TVFCinnv1qt9iyuktRJV+5ZGJ+7hXKN79lkxUEmtgq5QxgOXctVQHUGYjsLEepr/BuDjORZYdHenEDoSeFLWCxuHNMCVAQN7jZovrbgLHgknTS3waq8DDD0DQnU8j+2cRWifRbYbtWt02zBhqmu4SZjs33BtHMvfi9yWVjqnTxgTtLvf+wu34pbyoOeatcdM2wVIhRzPAYEj8sImjGswQR7gsmwPYxtMRdeVUeYVVi7L9CI6j8eggB8s57wIDAQAB",
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"128": "icons/icon-120.png",
"196": "icons/icon-192.png",
"256": "icons/icon-512.png"
},
"action": {
"default_title": "Replay",
"default_popup": "popup.html",
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"128": "icons/icon-120.png",
"196": "icons/icon-192.png",
"256": "icons/icon-512.png"
}
},
"permissions": ["storage", "tabs", "activeTab", "scripting", "identity"],
"commands": {
"spotlight": {
"suggested_key": {
"default": "Ctrl+Space",
"mac": "MacCtrl+Space"
},
"description": "Spotlight"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["spotlight.js", "extractor.js"],
"exclude_matches": [
"https://*.google.com/*",
"https://*.youtube.com/*",
"https://*.facebook.com/*",
"https://*.twitter.com/*",
"https://*.reddit.com/*",
"https://*.yahoo.com/*",
"https://*.bing.com/*",
"https://*.wikipedia.org/*",
"https://*.amazon.com/*",
"https://*.ebay.com/*",
"https://*.quora.com/*",
"https://*.instagram.com/*",
"https://*.pinterest.com/*",
"https://*.linkedin.com/*",
"https://*.tumblr.com/*",
"https://*.wordpress.com/*"
]
}
],
"web_accessible_resources": [
{
"resources": [
"icons/icon-16.png",
"icons/icon-32.png",
"icons/icon-120.png",
"icons/icon-192.png",
"icons/icon-512.png"
],
"matches": ["<all_urls>"]
}
]
}