Crunchyroll Full Screen

Crunchyroll Full Screen

Extensão Crunchyroll Full Screen

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "0.0.1",
  "name": "Crunchyroll Full Screen",
  "description": "Extensão Crunchyroll Full Screen",
  "author": "Thomaz Takashi Oda Toyama",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "css": [
        "style.css"
      ],
      "matches": [
        "https://*.crunchyroll.com/*"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Crunchyroll Full Screen",
    "default_icon": {
      "16": "images/icon16.png",
      "24": "images/icon24.png",
      "32": "images/icon32.png"
    }
  }
}