Video Second Screen

Video Second Screen

So you can read on a website and at the same time watch videos on a second screen without switching back and forth.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": false,
      "css": [
        "styles.css"
      ],
      "js": [
        "content.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "description": "So you can read on a website and at the same time watch videos on a second screen without switching back and forth.",
  "icons": {
    "16": "images/get_started16.png",
    "32": "images/get_started32.png",
    "48": "images/get_started48.png",
    "128": "images/get_started128.png"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAiSV5zauAX06IQ4aluUlu31BZthBVf0tlVvToLjaE5kzoBSfaRy75c6ueQc9jb/11wB5fl7D5Qls9jfrjt/IREewT4fJysrOC+G3c2paDDzrV0aoh+fGcpN79TjjaETlqosSlIxGs8VeDr2jaPSRp0rY8phFlaEqSHP4HLReXrNZ0C60VrRbadlcKHi/aJi/7sdjs3bUvD23EodwQAC7uaKly9bhbihOa7DT3K9YEcctmmPFXLNXjxGFA09nhPCPGMGfHyTtG/cJ3+2RaP+RDVxdUetSapLMO4TNT3bnXszhGfEeWkQ+fNDLkpEgx1s8yZoWSYwd9dlaxZND1Id734QIDAQAB",
  "manifest_version": 2,
  "name": "Video Second Screen",
  "offline_enabled": true,
  "page_action": {
    "default_icon": {
      "16": "images/get_started16.png",
      "32": "images/get_started32.png",
      "48": "images/get_started48.png",
      "128": "images/get_started128.png"
    },
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab"
  ],
  "short_name": "Video 2nd Screen",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.3"
}