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",
"manifest_version": 3,
"name": "Synchronize Tab Scrolling",
"version": "2.8.2",
"description": "Scroll once, sync everywhere. Compare documents, code, or translations side by side with one-click sync.",
"default_locale": "en",
"action": {
"default_icon": {
"16": "icons\/logo-16.png",
"32": "icons\/logo-32.png",
"64": "icons\/logo-64.png"
},
"default_popup": ".\/dist\/popup\/index.html"
},
"background": {
"service_worker": ".\/dist\/background\/index.mjs"
},
"icons": {
"16": "icons\/logo-16.png",
"48": "icons\/logo-48.png",
"128": "icons\/logo-128.png",
"512": "icons\/logo-512.png"
},
"permissions": [
"tabs",
"storage",
"scripting"
],
"host_permissions": [
"*:\/\/*\/*"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"dist\/contentScripts\/index.global.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"dist\/contentScripts\/synchronize-tab-scrolling.css",
"dist\/sidebar\/index.html"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}