Chronological MCU
Play each MCU scene in chronological order
Chronological MCU란 무엇입니까?
Chronological MCU은(는) Adam Thompson에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Play each MCU scene in chronological order"입니다.
확장 프로그램 스크린샷
Chronological MCU 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |