Rotten Tomatoes on Netflix
Displays the Rotten tomatoes score of everything on netflix while browsing.
Rotten Tomatoes on Netflix क्या है?
Rotten Tomatoes on Netflix dannydannygoldberggoldberg द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Displays the Rotten tomatoes score of everything on netflix while browsing."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Rotten Tomatoes on Netflix एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } ] } |