Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "DefendTab: Don't Close My Tab",
"version": "1.0.0",
"description": "DefendTab is a Smart Tab Protector that acts as a Guard and Lock to prevent you from accidentally closing your most important tabs.",
"author": "Vadym Trebushnyi(CepeshRC)",
"permissions": [
"storage",
"tabs",
"notifications",
"sessions",
"contextMenus",
"alarms"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"assets\/css\/content.css"
]
},
{
"matches": [
"https:\/\/extensionpay.com\/*"
],
"js": [
"ExtPay.js"
],
"run_at": "document_start"
}
],
"action": {
"default_popup": "popup.html",
"default_title": "DefendTab: Don't Close My Tab",
"default_icon": {
"16": "assets\/icons\/icon16.png",
"32": "assets\/icons\/icon32.png",
"48": "assets\/icons\/icon48.png"
}
},
"icons": {
"16": "assets\/icons\/icon16.png",
"32": "assets\/icons\/icon32.png",
"48": "assets\/icons\/icon48.png",
"128": "assets\/icons\/icon128.png"
},
"commands": {
"toggle-protection": {
"suggested_key": {
"default": "Alt+W",
"mac": "Alt+W"
},
"description": "Toggle site in exceptions list"
}
},
"web_accessible_resources": [
{
"resources": [
"assets\/vendor\/fontawesome\/css\/all.min.css",
"assets\/vendor\/fontawesome\/webfonts\/*",
"assets\/fonts\/inter\/*.ttf",
"assets\/fonts\/orbiton\/Orbitron-Bold.ttf",
"onboarding\/*",
"success\/*"
],
"matches": [
"<all_urls>"
]
}
]
}