Star Wars Clone Wars Chronological Disney+

Star Wars Clone Wars Chronological Disney+

Makes it easy to watch Star Wars: The Clone Wars TV show in chronological order based Star Wars's website listings

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Star Wars Clone Wars Chronological Disney+",
  "description": "Makes it easy to watch Star Wars: The Clone Wars TV show in chronological order based Star Wars's website listings",
  "version": "1.0",
  "icons": {
    "16": "imgs/human_ahsoka_16.png",
    "48": "imgs/human_ahsoka_48.png",
    "128": "imgs/clonewars_brand_labeled_for_reuse_128.png"
  },
  "page_action": {
    "default_icon": "imgs/human_ahsoka_48.png",
    "default_popup": "popup_chron_clone_wars.html",
    "default_title": "Clone Wars Chronological"
  },
  "background": {
    "scripts": [
      "eventPage_chron_clone_wars.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.disneyplus.com/*"
      ],
      "js": [
        "jquery-3.1.0.min.js",
        "content_chron_clone_wars.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "https://www.disneyplus.com/*"
  ],
  "options_page": "options_chron_clone_wars.html"
}