Files
upload-resized-extension/public/manifest.json
2019-04-10 01:16:36 +03:00

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"
]
}