Letterboxd Extras
Displays additional scores on Letterboxd (IMDB, Rotten Tomatoes, Metacritic).
Letterboxd Extras란 무엇입니까?
Letterboxd Extras은(는) duncanlangdev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays additional scores on Letterboxd (IMDB, Rotten Tomatoes, Metacritic)."입니다.
확장 프로그램 스크린샷
Letterboxd Extras 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Adds some additional features to Letterboxd Features: - Displays ratings on film pages from: - IMDb - Rotten Tomatoes - Metacritic - MyAnimeList - AniList - CinemaScore - SensCritique (disabled by default) - MUBI (disabled by default) - FilmAffinity (disabled by default) - Adds a Wikipedia-like info box on people pages for the birth dates, death dates, and years active - Adds links to the enabled rating sites and BoxOfficeMojo - Adds MPA film rating next to release year - Adds the full release date (wide release) on hover of the release year - Adds film duration converted to hours and minutes on hover of the duration - Adds the budget and box office numbers (US and Worldwide) in the details tab - Adds option to default search to film only Source Code available at Github: https://github.com/duncanlang/Letterboxd-Extras Please submit and bugs or suggestions on the Github issues page. https://github.com/duncanlang/Letterboxd-Extras/issues
확장 프로그램 기본 정보
이름 | Letterboxd Extras |
ID | edhldpamlnkpekapihiolppcdppgeice |
공식 URL | https://chromewebstore.google.com/detail/letterboxd-extras/edhldpamlnkpekapihiolppcdppgeice |
설명 | Displays additional scores on Letterboxd (IMDB, Rotten Tomatoes, Metacritic). |
파일 크기 | 142 KB |
설치 횟수 | 2,200 |
현재 버전 | 3.11.0 |
최근 업데이트 | 2024-03-03 |
출시 날짜 | 2022-09-03 |
평점 | 4.93/5 총 30 개의 평점 |
개발자 | duncanlangdev |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/duncanlang/Letterboxd-Extras |
도움말 페이지 URL | https://github.com/duncanlang/Letterboxd-Extras/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Letterboxd Extras", "description": "Displays additional scores on Letterboxd (IMDB, Rotten Tomatoes, Metacritic).", "version": "3.11.0", "minimum_chrome_version": "88", "action": { "default_title": "Letterboxd Extras Settings", "default_popup": "options.html", "default_icon": { "16": "icon16.png", "32": "icon32.png", "128": "icon128.png" } }, "icons": { "128": "icon128.png" }, "options_ui": { "page": "options.html", "browser_style": true }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/www.imdb.com\/*", "https:\/\/letterboxd.com\/*", "https:\/\/*.imdb.com\/*", "https:\/\/www.rottentomatoes.com\/*", "https:\/\/www.boxofficemojo.com\/*", "https:\/\/webapp.cinemascore.com\/*", "https:\/\/query.wikidata.org\/*", "https:\/\/www.metacritic.com\/*", "https:\/\/api.jikan.moe\/*", "https:\/\/graphql.anilist.co\/*" ], "optional_host_permissions": [ "https:\/\/api.mubi.com\/*", "https:\/\/apollo.senscritique.com\/*", "https:\/\/*.filmaffinity.com\/*" ], "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/letterboxd.com\/*" ], "js": [ "polyfill.js", "letterboxd-extras.user.js", "jquery-3.6.0.min.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "images\/mal-logo.png", "images\/sens-logo.png" ], "matches": [ "https:\/\/letterboxd.com\/*" ], "use_dynamic_url": true } ] } |