-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
38 lines (38 loc) · 876 Bytes
/
manifest.json
File metadata and controls
38 lines (38 loc) · 876 Bytes
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
{
"manifest_version": 3,
"name": "Base64Coder",
"description": "Base64Coder is a Chrome extension that allows you to encode and decode data in Base64 format.",
"version": "1.28.0",
"omnibox": {
"keyword": "64"
},
"action": {
"default_icon": "/assets/images/icons/b64c128.png"
},
"icons": {
"16": "/assets/images/icons/b64c16.png",
"32": "/assets/images/icons/b64c32.png",
"48": "/assets/images/icons/b64c48.png",
"128": "/assets/images/icons/b64c128.png"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"permissions": [
"contextMenus"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"lib.js",
"content.js"
],
"all_frames": true,
"match_about_blank": true
}
]
}