Inspect and view changes in RemoveBG PNG auto download source codes across current and past versions
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": "RemoveBG PNG auto download",
"version": "1.0.9",
"author": "Mr.Manit Treeprapankit",
"description": "Auto download transparent PNG when background is removed on https://remove.bg",
"icons": {
"16": "icons/icon-16x16.png",
"32": "icons/icon-32x32.png",
"48": "icons/icon-48x48.png",
"64": "icons/icon-64x64.png",
"128": "icons/icon-128x128.png"
},
"content_scripts": [
{
"js": [
"content-script.js"
],
"matches": [
"https://www.remove.bg/*"
],
"run_at": "document_start"
}
],
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"webRequest"
],
"host_permissions": [
"https://www.remove.bg/*",
"https://o.remove.bg/*"
],
"browser_specific_settings": {
"gecko": {
"id": "removebg_png_auto_download@8columns.com"
}
}
}