Letterboxd Rotten Tomatoes Addon
Adds Rotten Tomatoes features to Letterboxd.com
Letterboxd Rotten Tomatoes Addon란 무엇입니까?
Letterboxd Rotten Tomatoes Addon은(는) WilliamWelsh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds Rotten Tomatoes features to Letterboxd.com"입니다.
확장 프로그램 스크린샷
Letterboxd Rotten Tomatoes Addon 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension will offer a button on Letterboxd film pages that directs you to the Rotten Tomatoes equivalent. It also shows the score, and icon, under the title on film pages.
확장 프로그램 기본 정보
이름 | Letterboxd Rotten Tomatoes Addon |
ID | gbagfhlcandjadfocmenciejcgncjmfd |
공식 URL | https://chromewebstore.google.com/detail/letterboxd-rotten-tomatoe/gbagfhlcandjadfocmenciejcgncjmfd |
설명 | Adds Rotten Tomatoes features to Letterboxd.com |
파일 크기 | 22.73 KB |
설치 횟수 | 283 |
현재 버전 | 1.9 |
최근 업데이트 | 2019-01-22 |
출시 날짜 | 2019-01-21 |
평점 | 3.60/5 총 10 개의 평점 |
개발자 | WilliamWelsh |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/WilliamWelsh/Letterboxd-Rotten-Tomatoes-Addon |
도움말 페이지 URL | https://github.com/WilliamWelsh/Letterboxd-Rotten-Tomatoes-Addon |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Letterboxd Rotten Tomatoes Addon", "version": "1.9", "description": "Adds Rotten Tomatoes features to Letterboxd.com", "permissions": [ "https:\/\/www.omdbapi.com\/*", "https:\/\/www.rottentomatoes.com\/m\/*" ], "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/letterboxd.com\/film\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ] } |