-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
37 lines (37 loc) · 942 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
{
"manifest_version": 3,
"name": "Quick Dictionary",
"version": "1.0.0",
"author": "Asha Ivey",
"description": "Quickly view the definition of a word when highlighted.",
"icons": {
"16": "images/quick-dictionary-logo_16.png",
"32": "images/quick-dictionary-logo_32.png",
"48": "images/quick-dictionary-logo_48.png",
"128": "images/quick-dictionary-logo.png"
},
"permissions": [
"storage",
"activeTab",
"tabs",
"http://*/*", "https://*/*"
],
"action":{
"default_title": "Quick Dictionary",
"default_popup": "popup.html"
},
"content_scripts": [
{
"run_at": "document_end",
"matches": ["<all_urls>"],
"js": ["scripts/quick-dictionary.js"],
"css": ["styles/style.css"]
}
],
"web_accessible_resources": [
{
"resources": ["fonts/RobotoSlab-Light.ttf", "images/quick-dictionary-logo-long.svg"],
"matches": ["<all_urls>"]
}
]
}