SPOI Options

SPOI Options

Control the way you watch video online.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "SPOI Options",
  "author": "Smart People On Ice, LLC.",
  "short_name": "Options",
  "version": "1.8.308",
  "description": "Control the way you watch video online.",
  "icons": {
    "16": "Icon-16.png",
    "19": "Icon-19.png",
    "38": "Icon-38.png",
    "48": "Icon-48.png",
    "64": "Icon-64.png",
    "128": "Icon-128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "all_frames": false,
      "js": [
        "js/so.js"
      ],
      "matches": [
        "http://*.dailymotion.com/*",
        "http://*.escapistmagazine.com/*",
        "http://*.funnyordie.com/*",
        "http://*.metacafe.com/*",
        "http://*.vimeo.com/*",
        "http://*.youtube.com/*",
        "https://*.dailymotion.com/*",
        "https://*.funnyordie.com/*",
        "https://*.vimeo.com/*",
        "https://*.youtube.com/*",
        "https://spoi.com/*"
      ]
    },
    {
      "run_at": "document_start",
      "all_frames": true,
      "js": [
        "js/so_start.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    },
    {
      "run_at": "document_start",
      "all_frames": true,
      "js": [
        "js/so_serviceWorker.js"
      ],
      "matches": [
        "http://*.youtube.com/*",
        "https://*.youtube.com/*"
      ]
    }
  ],
  "page_action": {
    "default_icon": {
      "19": "Icon-19.png",
      "38": "Icon-38.png"
    },
    "default_title": "Toggle Options",
    "default_popup": "popup.html",
    "browser_style": false
  },
  "web_accessible_resources": [
    "Icon-*.png",
    "images/*.png",
    "images/*.svg",
    "images/youtube/*.png",
    "images/youtube/*.svg",
    "css/owr*.css"
  ],
  "minimum_chrome_version": "26",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "js/aes.js",
      "js/background.js"
    ]
  },
  "content_security_policy": "script-src 'self' https://spoi.com; object-src 'self'",
  "options_page": "options.html",
  "options_ui": {
    "chrome_style": true,
    "open_in_tab": true,
    "page": "options.html"
  },
  "update_url": "http://clients2.google.com/service/update2/crx",
  "incognito": "spanning",
  "permissions": [
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*"
  ]
}