Thumbnail Rating Bar for YouTube™
Displays a rating bar (likes/dislikes) on the bottom of every YouTube™ video thumbnail.
Thumbnail Rating Bar for YouTube™ क्या है?
Thumbnail Rating Bar for YouTube™ elliotwaite द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Displays a rating bar (likes/dislikes) on the bottom of every YouTube™ video thumbnail."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Thumbnail Rating Bar for YouTube™ एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension is open source on GitHub. If you find any bugs or have any suggestions, please open an issue here: https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube Thanks. Enjoy! YouTube™ is a trademark of Google LLC. Use of this trademark is subject to Google Permissions.
एक्सटेंशन की मूल जानकारी
नाम | Thumbnail Rating Bar for YouTube™ |
ID | cmlddjbnoehmihdmfhaacemlpgfbpoeb |
आधिकारिक URL | https://chromewebstore.google.com/detail/thumbnail-rating-bar-for/cmlddjbnoehmihdmfhaacemlpgfbpoeb |
विवरण | Displays a rating bar (likes/dislikes) on the bottom of every YouTube™ video thumbnail. |
फ़ाइल का आकार | 134 KB |
स्थापना संख्या | 24,787 |
वर्तमान संस्करण | 1.8.16 |
अंतिम अपडेट | 2024-01-24 |
प्रकाशन तिथि | 2020-05-30 |
रेटिंग | 4.62/5 कुल 261 रेटिंग्स |
डेवलपर | elliotwaite |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube |
सहायता पृष्ठ URL | https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Thumbnail Rating Bar for YouTube\u2122", "version": "1.8.16", "description": "Displays a rating bar (likes\/dislikes) on the bottom of every YouTube\u2122 video thumbnail.", "author": "Elliot Waite", "icons": { "96": "icons\/icon96.png", "128": "icons\/icon128.png" }, "action": { "default_icon": "icons\/icon96.png", "default_title": "Settings", "default_popup": "options.html" }, "options_ui": { "page": "options.html", "browser_style": false }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "lib\/jquery-3.6.1.min.js", "content-script.js" ], "run_at": "document_end" } ], "permissions": [ "scripting", "storage" ], "host_permissions": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.returnyoutubedislikeapi.com\/*" ], "web_accessible_resources": [ { "resources": [ "css\/bar-blue-gray.css", "css\/bar-blue-gray-video-page.css", "css\/bar-bottom-separator.css", "css\/bar-bottom-tooltip.css", "css\/bar-bottom.css", "css\/bar-green-red.css", "css\/bar-green-red-video-page.css", "css\/bar-tooltip.css", "css\/bar-top-separator.css", "css\/bar-top-tooltip.css", "css\/bar-top.css", "css\/bar.css" ], "matches": [], "extension_ids": [] } ] } |