mirror of
https://github.com/chenasraf/upload-resized-extension.git
synced 2026-05-17 17:58:02 +00:00
17 lines
309 B
JSON
17 lines
309 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Upload Resizer",
|
|
"version": "{{VERSION}}",
|
|
"background": {
|
|
"persistent": true,
|
|
"scripts": ["background.js"]
|
|
},
|
|
"content_scripts": [{
|
|
"matches": ["http://*/*", "https://*/*"],
|
|
"js": ["frontend.js"]
|
|
}],
|
|
"permissions": [
|
|
"contextMenus"
|
|
]
|
|
}
|