A smart tab merging tool that helps you browse multiple websites in the same tab.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"version": "1.0",
"icons": {
"16": "assets/icons/icon-16.png",
"32": "assets/icons/icon-32.png",
"48": "assets/icons/icon-48.png",
"64": "assets/icons/icon-64.png",
"128": "assets/icons/icon-128.png",
"256": "assets/icons/icon-256.png"
},
"permissions": [
"tabs",
"storage",
"activeTab",
"scripting",
"webRequest",
"contextMenus",
"declarativeNetRequest"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline'; frame-src *"
},
"background": {
"service_worker": "/assets/js/background.js"
},
"default_locale": "en",
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"action": {
"default_popup": "/popup/popup.html",
"default_icon": "assets/icons/icon-32.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"/assets/js/content.js"
]
}
],
"host_permissions": [
"http://*/*",
"https://*/*",
"<all_urls>"
],
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"/help/help.html",
"/index/index.html",
"/index/index.js",
"/index/index.css"
]
}
]
}