Crunchyroll VPN refresher

Crunchyroll VPN refresher

Adds button to refresh page with region blocked content after VPN connection

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Crunchyroll VPN refresher",
  "version": "1.1",
  "description": "Adds button to refresh page with region blocked content after VPN connection",
  "permissions": [
    "cookies",
    "https://www.crunchyroll.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.crunchyroll.com/*"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}