Inspect and view changes in Movable window-close-button 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
{
"description": "Creates a movable button to close current window.",
"manifest_version": 3,
"author": "MrOtherGuy",
"name": "Movable window-close-button",
"version": "2.0",
"permissions": [
"storage"
],
"background": {
"scripts": [
"background.js"
]
},
"action": {
"default_title": "Close",
"theme_icons": [
{
"dark": "icons/button-auto-dark.svg",
"light": "icons/button-auto-light.svg",
"size": 16
}
]
},
"options_ui": {
"page": "options/options.html"
},
"browser_specific_settings": {
"gecko": {
"id": "mwclose@example.com",
"strict_min_version": "112.0"
}
}
}