Easily save images in your desired format. One click, multiple formats!
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "__MSG_name__",
"description": "__MSG_description__",
"manifest_version": 3,
"version": "2.1.0",
"icons": {
"64": "icons/icon-64.png",
"128": "icons/icon-128.png"
},
"background": {
"service_worker": "js/worker.js"
},
"default_locale": "en",
"web_accessible_resources": [
{
"resources": [
"*"
],
"matches": [
"*://*/*"
]
}
],
"host_permissions": [
"*://*/*"
],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"js/image.js"
],
"run_at": "document_idle",
"match_about_blank": true
}
],
"permissions": [
"downloads",
"contextMenus",
"offscreen",
"storage",
"webRequest",
"activeTab",
"scripting"
]
}