-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
30 lines (30 loc) · 790 Bytes
/
manifest.json
File metadata and controls
30 lines (30 loc) · 790 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
{
"name": "Tone Indicators Explained",
"version": "1.0.1",
"description": "Double-Click to explain tone indicators without leaving your webpage",
"manifest_version": 3,
"author": "Ian Frederick Vigogne Goodbody Hunter",
"icons":{
"16": "tone_logo.png",
"32": "tone_logo.png",
"48": "tone_logo.png",
"128": "tone_logo.png"
},
"action":{
"default_title": "Tone Indicators Explained"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"css": ["background.css"],
"js": ["jquery-3.6.3.slim.min.js", "explain.js"]
}
],
"permissions": [
"activeTab"
],
"background": {
"service_worker": "background.js"
},
"optional_host_permissions": ["<all_urls>"]
}