YouTube™ Rating Loader
Show the like/dislike ratio on video previews on YouTube.
YouTube™ Rating Loader क्या है?
YouTube™ Rating Loader Benoit Hiller द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Show the like/dislike ratio on video previews on YouTube."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube™ Rating Loader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Display rating bars on all of the video previews on YouTube. This is an open alternative to existing YouTube rating extensions and is guaranteed to not ever collect any user data for any purpose. The source is available on extension website. Features: • Displays the like/dislike ratio at the top of video previews. • Shows the like percentage if you hover over the bar. Changes: September 19, 2017, version 3.0.0 • rebuilt extension to handle youtube redesign April 9, 2017, version 2.3.1 • fixed issue preventing nearly all likes from rendering April 14, 2016, version 2.3.0 • added support for history page March 28, 2016, version 2.2.0 • added support for subscriptions and trending pages March 27, 2016, version 2.1.2 • fixed display of certain homepage feed items November 26, 2015, version 2.0.1 • Updated the extension to properly support the new youtube player and layout. May 2, 2015, version 1.1.2 • Made the background page unload when inactive to reduce memory usage.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | klbndepaecfpfbmoecedmofogihhlpbm |
आधिकारिक URL | https://chrome.google.com/webstore/detail/youtube-rating-loader/klbndepaecfpfbmoecedmofogihhlpbm |
विवरण | Show the like/dislike ratio on video previews on YouTube. |
फ़ाइल का आकार | 53.72 KB |
स्थापना संख्या | 664 |
वर्तमान संस्करण | 3.0.0 |
अंतिम अपडेट | 2017-09-19 |
प्रकाशन तिथि | 2017-09-19 |
रेटिंग | 3.29/5 कुल 35 रेटिंग्स |
डेवलपर | Benoit Hiller |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/BenoitHiller/youtube_score |
गोपनीयता नीति पृष्ठ URL | https://www.benoithiller.com/webstore_privacy_policy |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube\u2122 Rating Loader", "description": "Show the like\/dislike ratio on video previews on YouTube.", "version": "3.0.0", "icons": { "16": "share\/icon16.png", "48": "share\/icon48.png", "128": "share\/icon128.png" }, "background": { "scripts": [ "vendor\/jquery\/dist\/jquery.min.js", "background.js" ], "persistent": false }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "vendor\/jquery\/dist\/jquery.min.js", "observer.js" ], "css": [ "youtube.css" ] } ] } |