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

Star Wars Clone Wars Chronological Disney+คืออะไร?

Star Wars Clone Wars Chronological Disney+ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย spenceronuffer และคุณลักษณะหลักของมันคือ "Makes it easy to watch Star Wars: The Clone Wars TV show in chronological order based Star Wars's website listings"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Star Wars Clone Wars Chronological Disney+

ดาวน์โหลดไฟล์ส่วนขยาย Star Wars Clone Wars Chronological Disney+ ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Star Wars: The Clone Wars is an excellent TV show, but it was aired out of order and it's meant to be watched in the chronological order. This extension automates watching the show in chronological order on the Disney Plus website. It follows the order that the Star Wars website lists https://www.starwars.com/news/star-wars-the-clone-wars-chronological-episodeorder but it takes away the work of going back and forth between the Star Wars website and Disney Plus.

If you're new to the show, it will start you at the first episode chronologically. If you have been watching before you installed the extension, then it won't try to adjust the chronological ordering until you start an episode for the first time, so that it can figure out where you are in the show.

Why watch chronologically?:
The creators of the show added a lot to existing episodes by making episodes that built up to them. They frequently added context, character development or motivation that really fleshed out the episode. If you watch the show in chronological order, then everything builds logically in a way that helps the story telling. I'm in no way affiliated with Star Wars or Disney, so I don't know why it was aired out of order. I've heard that there were different reasons for different episodes. Some of them were because later on in the series they realize that there was missing information leading up to earlier episodes, and some of them were because certain episodes took longer to write or produce.

If you have any complaints or requests, email [email protected] and I'll try to reply as soon as I can.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Star Wars Clone Wars Chronological Disney+ Star Wars Clone Wars Chronological Disney+
ID idlphppimakcgpedfjiggllfncjdhafi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/star-wars-clone-wars-chro/idlphppimakcgpedfjiggllfncjdhafi
คำอธิบาย Makes it easy to watch Star Wars: The Clone Wars TV show in chronological order based Star Wars's website listings
ขนาดไฟล์ 423 KB
จำนวนการติดตั้ง 740
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2020-05-23
วันที่เผยแพร่ 2020-05-23
คะแนน 4.43/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา spenceronuffer
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
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": {
        "128": "imgs\/clonewars_brand_labeled_for_reuse_128.png",
        "48": "imgs\/human_ahsoka_48.png",
        "16": "imgs\/human_ahsoka_16.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"
}