Rotten Tomatoes on Netflix
Displays the Rotten tomatoes score of everything on netflix while browsing.
Rotten Tomatoes on Netflixคืออะไร?
Rotten Tomatoes on Netflix เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dannydannygoldberggoldberg และคุณลักษณะหลักของมันคือ "Displays the Rotten tomatoes score of everything on netflix while browsing."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Rotten Tomatoes on Netflix
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" ] } ] } |