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": "AI Tabs Group",
"description": "Group your browser tabs with AI, organize tabs and save time",
"version": "1.0.0",
"default_locale": "en",
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content_script.js"
]
}
],
"background": {
"type": "module",
"service_worker": "service_worker.js"
},
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"permissions": [
"storage",
"tabs",
"tabGroups"
],
"host_permissions": [
"<all_urls>"
]
}