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ファイルをダウンロード
Rotten Tomatoes on Netflix拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
🍅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 |
Eメール | [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" ] } ] } |