Rotten Tomatoes on Netflix
Displays the Rotten tomatoes score of everything on netflix while browsing.
Rotten Tomatoes on Netflix란 무엇입니까?
Rotten Tomatoes on Netflix은(는) dannydannygoldberggoldberg에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays the Rotten tomatoes score of everything on netflix while browsing."입니다.
확장 프로그램 스크린샷
Rotten Tomatoes on Netflix 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
🍅Decide what to watch FAST 👀💨 🍅See the Rotten Tomatoes™ and IMDB™ score of everything on Netflix™ while browsing 💯 🍅View how popular a show is with the flame index (based on IMDB popularity data) 🍅No more opening new tabs to compare scores🤗 🍅Light weight 🪶, swift🐆, and FREE 💰 Displays scores unobtrusively under the title card. TY! :)
확장 프로그램 기본 정보
이름 | |
ID | bijfmhgcncbfihbcgnfdljkncndadhde |
공식 URL | https://chromewebstore.google.com/detail/rotten-tomatoes-on-netfli/bijfmhgcncbfihbcgnfdljkncndadhde |
설명 | Displays the Rotten tomatoes score of everything on netflix while browsing. |
파일 크기 | 33.88 KB |
설치 횟수 | 100 |
현재 버전 | 1.9 |
최근 업데이트 | 2022-03-07 |
출시 날짜 | 2021-12-16 |
평점 | 4.50/5 총 2 개의 평점 |
개발자 | dannydannygoldberggoldberg |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "options_page": "options.html", "name": "Rotten Tomatoes on Netflix", "description": "Displays the Rotten tomatoes score of everything on netflix while browsing.", "version": "1.9", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "service_worker": "background.js" }, "action": { "default_icon": "icon128.png", "default_title": "Click here to see info!", "default_popup": "popup.html" }, "web_accessible_resources": [ { "resources": [ "upArrow.png", "downArrow.png", "neutral.png", "imdbScore.png", "imdbScoreNoneLogo.png", "fire.png", "criticCertifiedFresh.png", "criticFresh.png", "criticSplat.png", "audienceFresh.png", "audienceSplat.png", "criticNone.png", "audienceNone.png" ], "matches": [ "*:\/\/www.netflix.com\/*" ], "extension_ids": [] } ], "content_scripts": [ { "matches": [ "https:\/\/www.netflix.com\/*" ], "js": [ "content.js" ], "css": [ "main.css" ] } ] } |