Bideo

Bideo

Set Video Quality to the Highest Available Resolution for Streaming Websites such as Youtube, Crunchyroll, VRV, and More

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extName__",
  "short_name": "__MSG_extName__",
  "version": "0.5.1",
  "description": "__MSG_ext_description__",
  "manifest_version": 2,
  "default_locale": "en",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "html/popup.html",
    "default_title": "__MSG_extName__",
    "default_icon": {
      "16": "res/images/logo_16.png",
      "32": "res/images/logo_32.png",
      "48": "res/images/logo_48.png",
      "128": "res/images/logo_128.png"
    }
  },
  "icons": {
    "16": "res/images/logo_16.png",
    "32": "res/images/logo_32.png",
    "48": "res/images/logo_48.png",
    "128": "res/images/logo_128.png"
  },
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "commands": {
    "toggle_start": {
      "suggested_key": {
        "default": "Ctrl+Shift+X",
        "windows": "Ctrl+Shift+X",
        "linux": "Ctrl+Shift+X",
        "mac": "Command+Shift+X"
      },
      "description": "__MSG_set_on_off_extension__"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.crunchyroll.com/*",
        "*://*.funimation.com/*",
        "*://*.vrv.co/*",
        "*://vrv.co/*",
        "*://*.anime-planet.com/*",
        "*://*.youtube.com/*"
      ],
      "js": [
        "js/jquery.js",
        "js/contentScript.js"
      ],
      "all_frames": true,
      "run_at": "document_idle"
    }
  ],
  "author": "Oziku Technologies LLC",
  "browser_specific_settings": {
    "gecko": {
      "id": "{bb19f098-7411-4e6b-9c5e-533e07d83fad}"
    }
  }
}