Open Tabs Sync

Open Tabs Sync

Sync open tabs between devices

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Open Tabs Sync",
  "description": "Sync open tabs between devices",
  "version": "3.2.7",
  "manifest_version": 3,
  "icons": {
    "16": "images/floppy-disk-regular.png",
    "32": "images/floppy-disk-regular.png",
    "48": "images/floppy-disk-regular.png",
    "128": "images/floppy-disk-regular.png"
  },
  "action": {
    "default_icon": "images/floppy-disk-regular.png",
    "default_title": "Open Tabs Sync side panel"
  },
  "permissions": [
    "tabs",
    "sidePanel",
    "storage",
    "alarms"
  ],
  "options_page": "options/options.html",
  "side_panel": {
    "default_path": "sidepanel/sidepanel.html"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": false,
      "match_origin_as_fallback": false,
      "match_about_blank": false,
      "run_at": "document_idle",
      "world": "ISOLATED"
    }
  ]
}