Powerful image processing tool, including image resizing, resolution adjustment, rotation, watermark addition, and more.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"action": {
"default_popup": "popup.html"
},
"default_locale": "en",
"background": {
"service_worker": "background.js"
},
"icons": {
"128": "img/icon-128.png"
},
"permissions": [
"storage"
],
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"version": "1.1.0",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}