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": "TabShare - Share tab groups as link",
"version": "1.3.1",
"description": "TabShare is a lightweight extension that lets you share a browser tab group as a link and restore it later.",
"homepage_url": "https:\/\/sidhuachary02.github.io\/tabshare-extension\/",
"permissions": [
"tabs",
"tabGroups",
"clipboardWrite",
"storage"
],
"host_permissions": [
"https:\/\/sidhuachary02.github.io\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/sidhuachary02.github.io\/*"
],
"js": [
"content-script.js"
]
}
],
"icons": {
"16": "icons\/tabshare16.png",
"48": "icons\/tabshare48.png",
"128": "icons\/tabshare128.png"
},
"background": {
"service_worker": "service-worker.js"
},
"action": {
"default_popup": "popup.html"
}
}