Crunchy Queue

Crunchy Queue

Download and share your Crunchyroll Queue!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Crunchy Queue",
  "version": "1.6.0",
  "manifest_version": 2,
  "description": "Download and share your Crunchyroll Queue!",
  "icons": {
    "128": "icon.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "externally_connectable": {
    "matches": [
      "http://*.crunchyroll.com/*",
      "https://*.crunchyroll.com/*"
    ]
  },
  "permissions": [
    "tabs",
    "cookies",
    "http://*.crunchyroll.com/*",
    "https://*.crunchyroll.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://www.crunchyroll.com/home/queue*",
        "https://www.crunchyroll.com/home/queue*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}