Chronological MCU
Play each MCU scene in chronological order
Chronological MCUคืออะไร?
Chronological MCU เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Adam Thompson และคุณลักษณะหลักของมันคือ "Play each MCU scene in chronological order"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chronological MCU
ดาวน์โหลดไฟล์ส่วนขยาย 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/
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | iefgpmiokcejpapghmjhikbhmhbikplf |
URL อย่างเป็นทางการ | 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" } } |