Chronological MCU

Play each MCU scene in chronological order

Chronological MCU là gì?

Chronological MCU là một tiện ích mở rộng Chrome được phát triển bởi Adam Thompson, và tính năng chính của nó là "Play each MCU scene in chronological order".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Chronological MCU

Tải xuống các tệp mở rộng Chronological MCU dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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/                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Chronological MCU Chronological MCU
ID iefgpmiokcejpapghmjhikbhmhbikplf
URL Chính Thức https://chrome.google.com/webstore/detail/chronological-mcu/iefgpmiokcejpapghmjhikbhmhbikplf
Mô tả Play each MCU scene in chronological order
Kích Thước Tệp 47.04 KB
Số Lần Cài Đặt 101
Phiên Bản Hiện Tại 0.2.2
Cập Nhật Lần Cuối 2020-08-29
Ngày Phát Hành 2020-06-16
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Adam Thompson
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://chronological-mcu.netlify.app/
URL Trang Trợ Giúp https://github.com/TheSonOfThomp/chronological-mcu/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}