-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
28 lines (28 loc) · 1.02 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
{
"name": "Webdeck Extension",
"version": "1.0.3",
"manifest_version": 3,
"description": "Web deck chrome extension to do even more!",
"permissions": ["storage"],
"host_permissions": [
"*://*/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "index.html",
"default_title": "Webdeck Extension"
},
"content_scripts": [
{
"matches": ["https://*.webdeck.org/*", "*://localhost/*"],
"js": ["content.js"],
"run_at": "document_start"
}
],
"externally_connectable": {
"matches": ["https://*.webdeck.org/*", "*://localhost/*"]
},
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2++boOtHTVAE07iAlDIwDNYxb//IXw2XNgAU03cVf1qIIBvd37YrHlu7jJlGnpRxeQSQLRIvr1x5RtyUt5oJLsBboWPsGIR9V8CdUO20iDL0ttQ12o0L7ig4uQwYR/G7iRWkstva2lFsB7wcjeQiZxVGe9Z4hWNpdSzhH/k5Q4IA7ef1IatsywiFDDWr//khcHd2RBngOxd+legfuM4YYjaLo4NKRIhquzYkZ68MUjQP2oRV6ud95pXTVlsPtoTUHBTjMKF8eQ0fCoaPEvpyNMHqIw2uD8lKA2nirbgq1Y5IBykbw95Q+DiLHyMxFogg+LSMoCsTNXx1K0WXdG+rgQIDAQAB"
}