CopyTabs

CopyTabs

Open your current tabs, selected tabs or windows in Chrome or another browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "CopyTabs",
  "description": "Open your current tabs, selected tabs or windows in Chrome or another browser.",
  "version": "1.0.7.0",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "tabs.html"
  },
  "icons": {
    "16": "icon.png",
    "32": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "background": {
    "scripts": [
      "js/lib/jquery.js",
      "js/shared.js",
      "js/background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "tabs",
    "https://ajax.googleapis.com/",
    "nativeMessaging",
    "contextMenus",
    "storage"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}