Flix Trix!

Flix Trix!

Tools for your streaming services. Works with Netflix, Amazon, and Disney+!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Flix Trix!",
  "description": "Tools for your streaming services. Works with Netflix, Amazon, and Disney+!",
  "version": "1.1.3",
  "icons": {
    "128": "icon_128.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "Flix Trix!"
  },
  "permissions": [
    "storage",
    "webNavigation",
    "*://www.netflix.com/browse/my-list",
    "*://www.netflix.com/browse",
    "*://www.disneyplus.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.netflix.com/browse/my-list"
      ],
      "js": [
        "content.js"
      ]
    },
    {
      "matches": [
        "*://www.netflix.com/browse"
      ],
      "js": [
        "continue_watching_to_top.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://www.disneyplus.com/*"
      ],
      "js": [
        "continue_watching_to_top.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://www.disneyplus.com/*/watchlist"
      ],
      "js": [
        "content.js"
      ]
    },
    {
      "matches": [
        "*://*/gp/video/mystuff/*"
      ],
      "js": [
        "content.js"
      ]
    },
    {
      "matches": [
        "*://*/gp/video/storefront/*"
      ],
      "js": [
        "continue_watching_to_top.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}