-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
executable file
·37 lines (36 loc) · 1.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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuQNQIhiPzmifa28/SwJCwnh6g1VNKkYD3qmQZxw5bKUyY+G0LQe2+20q9QDzimAYJp+HSt9fR05B86iRomZaz17IA4PwE23LIIwaH8aM3L5VdZOJ4+MNDIA0DVouKIq5Ncoh80Db6Da9ZM6DGooGdw+Fpx08t2tx26Ad7/6PXuXXh1yntbZJBBe9mSoIXQDW2NMv2iz7/vmZn38eMVbkGls4AULpjFhJRSFvgh0ViI93RktptM3OzFNLVpwry0+PyxM4btgL95iuNZLbHZTPaKw3aLvjvsriVLxPRIFJ7LEkvdNKth05rkykKWp4K+usvcESC9GuwGwaVMc5cpxdWQIDAQAB",
"name": "Grass Extension",
"description": "Your view of the internet is valuable. Get paid for it.",
"version": "4.0.3",
"homepage_url": "https://www.getgrass.io/",
"icons": {
"16": "icons/icon_16.png",
"32": "icons/icon_32.png",
"48": "icons/icon_48.png",
"128": "icons/icon_128.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Grass Extension",
"default_popup": "index.html"
},
"permissions": [
"storage",
"background",
"webRequest",
"declarativeNetRequestWithHostAccess"
],
"host_permissions": ["<all_urls>"],
"externally_connectable": {
"matches": [
"http://127.0.0.1/*",
"http://localhost/*",
"*://*.getgrass.io/*"
]
}
}