Awards List on Letterboxd
This addon makes available awards lists on Letterboxd film pages. It also marks oscar winning crew members.
Awards List on Letterboxd란 무엇입니까?
Awards List on Letterboxd은(는) imdb2letterboxd에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This addon makes available awards lists on Letterboxd film pages. It also marks oscar winning crew members."입니다.
확장 프로그램 스크린샷
Awards List on Letterboxd 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This addon makes available awards lists on Letterboxd film pages. It also marks oscar winning crew members. UPDATE April 2023 - Fixed for new layout changes on IMDb on the awards page - Best film icon next to the film title now includes other categories such as International Film, Documentary Feature and short film categories
확장 프로그램 기본 정보
이름 | Awards List on Letterboxd |
ID | nkpchhjoclfpimjoceongdiaaldgcemh |
공식 URL | https://chromewebstore.google.com/detail/awards-list-on-letterboxd/nkpchhjoclfpimjoceongdiaaldgcemh |
설명 | This addon makes available awards lists on Letterboxd film pages. It also marks oscar winning crew members. |
파일 크기 | 93.84 KB |
설치 횟수 | 211 |
현재 버전 | 0.5 |
최근 업데이트 | 2023-04-28 |
출시 날짜 | 2023-03-13 |
평점 | 4.00/5 총 2 개의 평점 |
개발자 | imdb2letterboxd |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Awards List on Letterboxd", "version": "0.5", "description": "This addon makes available awards lists on Letterboxd film pages. It also marks oscar winning crew members.", "icons": { "48": "icons\/48.png" }, "content_scripts": [ { "matches": [ "https:\/\/letterboxd.com\/film\/*" ], "js": [ "js\/jquery-3.3.1.min.js", "js\/xss.js", "js\/script.js" ], "css": [ "css\/styles.css" ], "run_at": "document_end" }, { "matches": [ "https:\/\/www.imdb.com\/*" ], "js": [ "js\/jquery-3.3.1.min.js", "js\/xss.js", "js\/script.js" ], "css": [ "css\/styles.css" ], "run_at": "document_end" } ], "background": { "service_worker": "js\/background.js" }, "web_accessible_resources": [ { "resources": [ "js\/reload-letterboxd.js", "svg\/bafta_award.svg", "svg\/generic_film_award.svg", "svg\/oscar_awards.svg", "svg\/oscar_awards_nom.svg", "svg\/golden_globes.svg" ], "matches": [ "https:\/\/letterboxd.com\/*" ] } ] } |