You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
568 B
32 lines
568 B
1 month ago
|
{
|
||
|
"manifest_version": 3,
|
||
|
"author": "Gregory Leeman",
|
||
|
"background": {
|
||
|
"service_worker": "background.js"
|
||
|
},
|
||
|
"action": {
|
||
|
"default_icon": "icon.png",
|
||
|
"default_popup": "index.html"
|
||
|
},
|
||
|
"icons": {
|
||
|
"128": "icon.png"
|
||
|
},
|
||
|
"description": "Save media",
|
||
|
"name": "Media Helper",
|
||
|
"permissions": [
|
||
|
"contextMenus",
|
||
|
"clipboardWrite",
|
||
|
"activeTab",
|
||
|
"scripting",
|
||
|
"tabs"
|
||
|
],
|
||
|
"version": "1.0",
|
||
|
"web_accessible_resources": [
|
||
|
{
|
||
|
"resources": [ "style.css" ],
|
||
|
"matches": [ "<all_urls>" ]
|
||
|
}
|
||
|
],
|
||
|
"host_permissions": ["https://media.gregoryleeman.com/*"]
|
||
|
}
|