-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
128 lines (127 loc) · 3.49 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"manifest_version": 2,
"name": "Time-Sync",
"version": "1.0.8",
"description": "Convert dates and times to the user's preferred time zone and format",
"permissions": ["activeTab", "storage", "<all_urls>", "contextMenus"],
"browser_action": {
"default_icon": "icons/base_icon.png",
"default_popup": "html/popup.html"
},
"background": {
"scripts": [
"js/compromise-b.js",
"js/luxon.js",
"js/moment.min.js",
"js/moment-timezone-with-data-1970-2030.js",
"js/background.js"
]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"exclude_matches": [
"*://*.alibaba.com/*",
"*://*.aliexpress.com/*",
"*://*.amazon.com/*",
"*://*.aol.com/*",
"*://*.ask.com/*",
"*://*.baidu.com/*",
"*://*.bankofamerica.com/*",
"*://*.bestbuy.com/*",
"*://*.bing.com/*",
"*://*.blogger.com/*",
"*://*.capitalone.com/*",
"*://*.chase.com/*",
"*://*.citibank.com/*",
"*://*.dogpile.com/*",
"*://*.drupal.org/*",
"*://*.duckduckgo.com/*",
"*://*.ebay.com/*",
"*://*.ecosia.org/*",
"*://*.etsy.com/*",
"*://*.facebook.com/*",
"*://*.fastmail.com/*",
"*://*.ghost.org/*",
"*://*.gibiru.com/*",
"*://*.github.com/*",
"*://*.gmail.com/*",
"*://*.gmx.com/*",
"*://*.google.com/*",
"*://*.hulu.com/*",
"*://*.instagram.com/*",
"*://*.joomla.org/*",
"*://*.linkedin.com/*",
"*://*.mail.ru/*",
"*://*.medium.com/*",
"*://*.metager.org/*",
"*://*.netflix.com/*",
"*://*.newegg.com/*",
"*://*.onesearch.com/*",
"*://*.outlook.live.com/*",
"*://*.paypal.com/*",
"*://*.pinterest.com/*",
"*://*.pnc.com/*",
"*://*.protonmail.com/*",
"*://*.quora.com/*",
"*://*.qwant.com/*",
"*://*.reddit.com/*",
"*://*.searchencrypt.com/*",
"*://*.seznam.cz/*",
"*://*.shopify.com/*",
"*://*.snapchat.com/*",
"*://*.sogou.com/*",
"*://*.squarespace.com/*",
"*://*.squareup.com/*",
"*://*.stackoverflow.com/*",
"*://*.startpage.com/*",
"*://*.steamcommunity.com/*",
"*://*.steampowered.com/*",
"*://*.swisscows.com/*",
"*://*.target.com/*",
"*://*.tdbank.com/*",
"*://*.tiktok.com/*",
"*://*.tumblr.com/*",
"*://*.twitter.com/*",
"*://*.usbank.com/*",
"*://*.venmo.com/*",
"*://*.vimeo.com/*",
"*://*.walmart.com/*",
"*://*.webcrawler.com/*",
"*://*.weebly.com/*",
"*://*.wellsfargo.com/*",
"*://*.wikipedia.org/*",
"*://*.wiktionary.org/*",
"*://*.wix.com/*",
"*://*.wordpress.com/*",
"*://*.yahoo.com/*",
"*://*.yandex.com/*",
"*://*.youtube.com/*",
"*://*.zoho.com/*"
],
"js": [
"js/compromise-b.js",
"js/luxon.js",
"js/chrono-b.js",
"js/moment.min.js",
"js/moment-timezone-with-data-1970-2030.js",
"js/content.js",
"js/popup.js"
]
},
{
"matches": ["<all_urls>"],
"js": [
"js/compromise-b.js",
"js/luxon.js",
"js/chrono-b.js",
"js/moment.min.js",
"js/moment-timezone-with-data-1970-2030.js",
"js/content-manual.js"
]
}
],
"options_ui": {
"page": "options.html"
}
}