20 lines
370 B
20 lines
370 B
1 month ago
|
{
|
||
|
"name": "Image Saver",
|
||
|
"description": "Save an image on the web to my server.",
|
||
|
"version": "1.0.0",
|
||
|
"manifest_version": 3,
|
||
|
"permissions": [
|
||
|
"contextMenus",
|
||
|
"notifications"
|
||
|
],
|
||
|
"host_permissions": [
|
||
|
"https://*/"
|
||
|
],
|
||
|
"background": {
|
||
|
"service_worker": "main.js"
|
||
|
},
|
||
|
"icons": {
|
||
|
"48": "icon.png"
|
||
|
}
|
||
|
}
|