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 |
官方網址 | 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" ] } ] } |