Letterboxd IMDb Trivia
Shows IMDb trivia on Letterboxd movie pages.
Letterboxd IMDb Trivia란 무엇입니까?
Letterboxd IMDb Trivia은(는) Robert Gerlach에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows IMDb trivia on Letterboxd movie pages."입니다.
확장 프로그램 스크린샷
Letterboxd IMDb Trivia 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Letterboxd is nice, but would be even better if it had some trivia info for each movie to learn more about it. IMDb has that trivia. This extension automatically grabs the IMDb trivia and integrates it into the Letterboxd movie page. Enjoy movie trivia on Letterboxd.
확장 프로그램 기본 정보
이름 | Letterboxd IMDb Trivia |
ID | ekhlhijgenghbhpdhbhkmcoebkilldfi |
공식 URL | https://chromewebstore.google.com/detail/letterboxd-imdb-trivia/ekhlhijgenghbhpdhbhkmcoebkilldfi |
설명 | Shows IMDb trivia on Letterboxd movie pages. |
파일 크기 | 65.78 KB |
설치 횟수 | 944 |
현재 버전 | 1.5.2 |
최근 업데이트 | 2023-11-11 |
출시 날짜 | 2019-05-14 |
평점 | 5.00/5 총 14 개의 평점 |
개발자 | Robert Gerlach |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Letterboxd IMDb Trivia", "version": "1.5.2", "description": "Shows IMDb trivia on Letterboxd movie pages.", "minimum_chrome_version": "101", "content_scripts": [ { "js": [ "js\/jquery-3.3.1.min.js", "js\/xss.js", "js\/content.js" ], "css": [ "css\/styles.css" ], "matches": [ "https:\/\/letterboxd.com\/film\/*" ], "run_at": "document_end" }, { "js": [ "js\/jquery-3.3.1.min.js", "js\/imdb-iframe.js" ], "matches": [ "https:\/\/www.imdb.com\/*" ], "run_at": "document_end", "all_frames": true } ], "web_accessible_resources": [ { "resources": [ "js\/reload-letterboxd.js", "img\/*.png" ], "matches": [ "https:\/\/letterboxd.com\/*" ] }, { "resources": [ "js\/imdb-iframe.js" ], "matches": [ "https:\/\/www.imdb.com\/*" ] } ], "background": { "service_worker": "js\/background.js" }, "permissions": [ "storage", "declarativeNetRequestWithHostAccess" ], "host_permissions": [ "https:\/\/letterboxd.com\/film\/*", "https:\/\/www.imdb.com\/*" ], "icons": { "16": "img\/icon-16.png", "32": "img\/icon-32.png", "48": "img\/icon-48.png" }, "options_ui": { "page": "options\/index.html", "open_in_tab": false } } |