Video remote

Video remote

remotely controlled playing of video, Use your cell phone as a remote control!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "3.3.1",
  "icons": {
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/",
        "http://*/*",
        "http://*/*/",
        "https://www.youtube.com/",
        "https://www.youtube.com/*",
        "https://vimeo.com/*",
        "https://boxy2.com/*"
      ],
      "all_frames": true,
      "js": [
        "background2.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "background.js",
    "icon.png",
    "options.html"
  ],
  "permissions": [
    "storage"
  ],
  "options_page": "options.html"
}