-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
36 lines (36 loc) · 1.02 KB
/
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
{
"description": "Adds a browser action icon to the toolbar following Manifest V3. Click the button to choose a beast. The active tab's body content is then replaced with a picture of the chosen beast. See https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Examples#beastify and https://developer.chrome.com/docs/extensions/migrating/",
"manifest_version": 3,
"name": "Beastify MV3",
"version": "1.0",
"homepage_url": "https://github.com/salazarbarrera/Manifest-V3-Beastify",
"icons": {
"48": "icons/beasts-48.png"
},
"permissions": [
"activeTab",
"scripting"
],
"web_accessible_resources": [
{
"resources": [
"beasts/*.jpg"
],
"matches": [
"<all_urls>"
]
}
],
"action": {
"default_icon": "icons/beasts-32.png",
"theme_icons": [
{
"light": "icons/beasts-32-light.png",
"dark": "icons/beasts-32.png",
"size": 32
}
],
"default_title": "Beastify",
"default_popup": "popup/choose_beast.html"
}
}