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",
"name": "Tab Copy",
"version": "4.1.1",
"description": "Quickly copy tabs to the clipboard in a variety of formats",
"manifest_version": 3,
"minimum_chrome_version": "116",
"icons": {
"16": "img\/logo-16.png",
"32": "img\/logo-32.png",
"48": "img\/logo-48.png",
"128": "img\/logo-128.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": "img\/logo-48.png"
},
"background": {
"service_worker": "service-worker-loader.js",
"type": "module"
},
"options_page": "options.html",
"permissions": [
"tabs",
"storage",
"contextMenus",
"offscreen",
"clipboardWrite"
],
"optional_permissions": [
"notifications"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"commands": {
"1copy-highlighted-tabs": {
"description": "Copy selected tabs"
},
"2copy-window-tabs": {
"description": "Copy window tabs"
},
"3copy-all-tabs": {
"description": "Copy all tabs"
},
"4copy-all-windows-and-tabs": {
"description": "Copy all tabs by window"
}
}
}