BeamTab

BeamTab

Beam your current tab to your other Chrome browsers.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Stelios Petrakis",
  "background": {
    "persistent": true,
    "scripts": [
      "js/forge-sha256.js",
      "js/events.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "icons/icon-19.png",
      "38": "icons/icon-76.png"
    },
    "default_title": "BeamTab"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+B"
      }
    }
  },
  "web_accessible_resources": [
    "css/extractor.css"
  ],
  "options_page": "html/options.html",
  "description": "Beam your current tab to your other Chrome browsers.",
  "homepage_url": "http://stelabouras.com",
  "icons": {
    "16": "icons/icon-16.png",
    "256": "icons/icon-256.png"
  },
  "manifest_version": 2,
  "name": "BeamTab",
  "permissions": [
    "idle",
    "contextMenus",
    "tabs",
    "storage",
    "notifications",
    "identity",
    "identity.email",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/extractor.js"
      ],
      "css": [
        "css/extractor.css"
      ]
    }
  ],
  "version": "1.9"
}