Funimation - Queue Fix

Funimation - Queue Fix

If you can't save your queue changes (Reordering, removing, etc...) on Funimation.com then you can use this.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Funimation - Queue Fix",
  "version": "1.2.1",
  "manifest_version": 2,
  "description": "If you can't save your queue changes (Reordering, removing, etc...) on Funimation.com then you can use this.",
  "icons": {
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon128.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "cookies",
    "storage",
    "*://*.funimation.com/*",
    "*://prod-api-funimationnow.dadcdigital.com/api*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.funimation.com/account/*"
      ],
      "js": [
        "jqueryui/external/jquery/jquery.js",
        "jqueryui/jquery-ui.min.js",
        "js/queueContent.js"
      ]
    },
    {
      "matches": [
        "*://www.funimation.com/*"
      ],
      "exclude_matches": [
        "*://www.funimation.com/account/*"
      ],
      "js": [
        "jqueryui/external/jquery/jquery.js",
        "js/removeItemFix.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "jqueryui/external/jquery/jquery.js",
      "js/background.js"
    ]
  }
}