Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Kill Clone Tabs",
"version": "1.70",
"description": "Find and close duplicate tabs. Sort, group, and manage tabs. Highlight text on pages. Copy tab URLs. Boost your productivity!",
"icons": {
"16": "images\/KillClonesIcon16.png",
"48": "images\/KillClonesIcon48.png",
"128": "images\/KillClonesIcon128.png"
},
"action": {
"default_icon": {
"16": "images\/KillClonesIcon16.png",
"24": "images\/KillClonesIcon24.png",
"32": "images\/KillClonesIcon32.png"
},
"default_title": "Kill Clone Tabs: Duplicate Tab Cleaner",
"default_popup": "popup.html"
},
"background": {
"service_worker": "eventPage.js",
"type": "module"
},
"author": "Viacheslav Dovnich",
"permissions": [
"tabs",
"storage",
"history",
"tabGroups"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"content.css"
]
}
],
"commands": {
"toggle-grouping": {
"suggested_key": {
"default": "Alt+Shift+G",
"mac": "Alt+Shift+G"
},
"description": "Toggle native tab grouping"
}
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
}
}