Chronological MCU

Play each MCU scene in chronological order

什麼是Chronological MCU?

Chronological MCU是由Adam Thompson開發的Chrome擴展程式,該擴展的主要功能是“Play each MCU scene in chronological order”。

擴展截圖

screenshot
screenshot
screenshot

下載Chronological MCU擴展crx文件

下載Chronological MCU擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Based on the blog post by Tony Goldmark*, Chronological MCU lets you play every scene in the Marvel Cinematic Universe in chronological order. Just press play and you'll automatically be taken to every scene, in every MCU movie1 in chronological order, just as they occur in the universe.

Must have a Disney Plus account and a Netflix account logged in for this to work properly.

Troubleshooting: If Netflix is taking a while to get to the start time, open this extension's popup menu to check when the clip starts, and manually set the movie's time.

*https://www.comicbookherald.com/the-official-scene-by-scene-mcu-chronological-watching-order/                    

擴展基本資訊

名稱 Chronological MCU Chronological MCU
ID iefgpmiokcejpapghmjhikbhmhbikplf
官方網址 https://chrome.google.com/webstore/detail/chronological-mcu/iefgpmiokcejpapghmjhikbhmhbikplf
簡介 Play each MCU scene in chronological order
檔案大小 47.04 KB
安裝次數 101
目前版本 0.2.2
更新時間 2020-08-29
上架時間 2020-06-16
評分 5.00/5 共 3 次評分
開發者 Adam Thompson
電子郵箱 [email protected]
付費類型 free
擴展官網 https://chronological-mcu.netlify.app/
說明頁面URL https://github.com/TheSonOfThomp/chronological-mcu/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chronological MCU",
    "version": "0.2.2",
    "description": "Play each MCU scene in chronological order",
    "manifest_version": 2,
    "permissions": [
        "declarativeContent",
        "activeTab",
        "tabs"
    ],
    "background": {
        "scripts": [
            "films.js",
            "sequence.js",
            "debounce.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.disneyplus.com\/*",
                "https:\/\/*.disneyplus.com\/*",
                "http:\/\/*.netflix.com\/*",
                "https:\/\/*.netflix.com\/*"
            ],
            "js": [
                "debounce.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popover.html",
        "default_icon": {
            "16": "images\/chronMCU16.png",
            "32": "images\/chronMCU32.png",
            "48": "images\/chronMCU48.png",
            "128": "images\/chronMCU128.png"
        }
    },
    "icons": {
        "16": "images\/chronMCU16.png",
        "48": "images\/chronMCU48.png",
        "128": "images\/chronMCU128.png"
    }
}