YouTube Star Rating
The ultimate rating system for YouTube.
YouTube Star Rating क्या है?
YouTube Star Rating Žan Ožbot द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The ultimate rating system for YouTube."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube Star Rating एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension was created to solve the problem with YouTube like/dislike rating system (especially since the dislike number was removed from YouTube). Our solution is a convenient star rating system in a form of a browser extension that allows users to rate YouTube videos from 1 to 5 stars and see their ratings. The difference between the rating systems is subtle, yet very important. • Star rating - the user will associate it with quality. If the user sees a video rated with 5 stars, they will think that it is of very good quality. • Like/dislike rating - the user will associate it with preference. If the user sees a video that received some "likes", they will think that some people prefer it, without necessarily associating it with quality. More information about the extension is available on our website https://youtubestarrating.com But this is just the beginning. As we grow we'll continue to upgrade the extension and bring you more features and a better user experience. We have some awesome ideas for the future!
एक्सटेंशन की मूल जानकारी
नाम | YouTube Star Rating |
ID | ngidhkhdahknlfdodgallocafkidjmff |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-star-rating/ngidhkhdahknlfdodgallocafkidjmff |
विवरण | The ultimate rating system for YouTube. |
फ़ाइल का आकार | 21.42 KB |
स्थापना संख्या | 324 |
वर्तमान संस्करण | 1.2.0 |
अंतिम अपडेट | 2024-01-05 |
प्रकाशन तिथि | 2022-01-05 |
रेटिंग | 4.67/5 कुल 9 रेटिंग्स |
डेवलपर | Žan Ožbot |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://youtubestarrating.ozbot.si/ |
सहायता पृष्ठ URL | https://www.buymeacoffee.com/zanozbot |
गोपनीयता नीति पृष्ठ URL | https://youtubestarrating.ozbot.si/faq |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "1.2.0", "name": "YouTube Star Rating", "description": "The ultimate rating system for YouTube.", "author": "\u017dan O\u017ebot", "homepage_url": "https:\/\/youtubestarrating.ozbot.si\/", "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "icons": { "16": "\/icons\/16x16.png", "32": "\/icons\/32x32.png", "48": "\/icons\/48x48.png", "128": "\/icons\/128x128.png" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "\/icons\/16x16.png", "32": "\/icons\/32x32.png", "48": "\/icons\/48x48.png", "128": "\/icons\/128x128.png" } }, "content_scripts": [ { "matches": [ "*:\/\/youtube.com\/*", "*:\/\/www.youtube.com\/*", "*:\/\/m.youtube.com\/*" ], "exclude_matches": [ "*:\/\/*.music.youtube.com\/*" ], "css": [ "content-styles.css" ], "js": [ "content-script.js" ] } ], "externally_connectable": { "matches": [ "*:\/\/*.youtube.com\/*" ] }, "web_accessible_resources": [ { "resources": [ "template.html" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ] } |