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": "Tab Group Shortcut", "version": "1.3", "description": "Adds a shortcut to group current tab.", "icons": { "128": "icon128.png" }, "permissions": [ "tabs", "tabGroups", "storage" ], "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ] } ], "options_page": "options\/index.html", "commands": { "FORCE_TOGGLE_GROUP": { "suggested_key": { "default": "Ctrl+Q" }, "description": "Force group\/ungroup for selected tabs." } }, "action": { "default_title": "Tab Group Shortcut" } }