-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
40 lines (39 loc) · 975 Bytes
/
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
{
"manifest_version": 3,
"name": "Tag Recovery",
"version": "1.3.0",
"description": "Retrieve text from DW forms",
"action": {
"default_title": "Tag Recovery",
"default_popup": "index.html",
"default_icon": {
"32": "src/assets/img/Favicon-32x32.png",
"36": "src/assets/img/Favicon-32x32.png",
"48": "src/assets/img/Favicon-32x32.png"
}
},
"content_scripts": [
{
"matches": ["https://*.dreamwidth.org/*"],
"js": ["src/scripts/icon.js"],
"run_at": "document_end",
"all_frames": true
}
],
"permissions" : [
"storage"
],
"web_accessible_resources": [
{
"matches": [
"https://*.dreamwidth.org/*"
],
"resources": [
"src/assets/css/styles.css"
],
"use_dynamic_url": false
}
],
"content_security_policy":
{ "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; script-src-elem 'self' 'wasm-unsafe-eval'; object-src 'self'"}
}