-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
34 lines (34 loc) · 868 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
{
"manifest_version": 3,
"name": "Fontonic - Change Fonts",
"description": "Change fonts of any website with your locally installed fonts!",
"version": "1.7.4",
"action": {
"default_icon": {
"16": "./res/icons/favicon-16x16.png",
"32": "./res/icons/favicon-32x32.png",
"96": "./res/icons/favicon-96x96.png"
},
"default_title": "Click to customize fonts",
"default_popup": "./popup/popup.html"
},
"permissions": [
"storage",
"tabs",
"fontSettings"
],
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*"
],
"js": [
"./js/content.js"
]
}
],
"background": {
"service_worker": "./js/background.js"
}
}