-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
48 lines (43 loc) · 1.12 KB
/
manifest.json
File metadata and controls
48 lines (43 loc) · 1.12 KB
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
{
"manifest_version": 3,
"name": "LicenseDB License Diff",
"version": "0.0.7",
"description": "Compares and diffs selected text using AboutCode's ScanCode LicenseDB license list and SPDX License List.",
"permissions": [
"activeTab",
"scripting",
"tabs",
"storage",
"alarms"
],
"host_permissions": [
"https://scancode-licensedb.aboutcode.org/*",
"https://spdx.org/*"
],
"background": {
"service_worker": "src/background/background.js",
"type": "module"
},
"action": {
"default_popup": "src/ui/popup/popup.html",
"default_icon": {
"16": "src/assets/images/icon-16.png",
"32": "src/assets/images/icon-32.png",
"48": "src/assets/images/icon-48.png",
"128": "src/assets/images/icon-128.png"
}
},
"options_page": "src/ui/options/options.html",
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["src/content/content.js"],
"css": ["src/content/content.css"]
}
],
"icons": {
"16": "src/assets/images/icon-16.png",
"48": "src/assets/images/icon-48.png",
"128": "src/assets/images/icon-128.png"
}
}