Return YouTube Dislike Button
Returns ability to see dislikes on YouTube
Return YouTube Dislike Button क्या है?
Return YouTube Dislike Button AdDev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Returns ability to see dislikes on YouTube"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Return YouTube Dislike Button एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Returns ability to see dislike statistics and rating bar. Shows full (not-shortened) likes and dislikes on hover over rating bar. YouTube is hiding Youtube Dislikes from everyone except the creator itself. But in the mean time, we can use Youtube Data v3 API to fetch dislikes of a video and show it to the consumer (you). Youtube will break this by 30th December, but Yt Dislikes viewer comes with an archive API that automatically fetches dislikes of every video you watch (after installing the extension) and saves it into an open-sourced database (only the video ID and dislike count, none of your data). In future, we have many big plans for this as well.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | hkipgenlhedgfkjlajomnhaiafnhnjjf |
आधिकारिक URL | https://chrome.google.com/webstore/detail/return-youtube-dislike-bu/hkipgenlhedgfkjlajomnhaiafnhnjjf |
विवरण | Returns ability to see dislikes on YouTube |
फ़ाइल का आकार | 17.98 KB |
स्थापना संख्या | 6,970 |
वर्तमान संस्करण | 2.1 |
अंतिम अपडेट | 2023-02-22 |
प्रकाशन तिथि | 2021-12-02 |
रेटिंग | 3.27/5 कुल 22 रेटिंग्स |
डेवलपर | AdDev |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://pastebin.com/raw/AdhZ19M3 |
गोपनीयता नीति पृष्ठ URL | https://www.amann.com/meta/privacy-policy |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Return YouTube Dislike Button", "description": "Returns ability to see dislikes on YouTube", "version": "2.1", "manifest_version": 3, "background": { "service_worker": "return-youtube-dislike.background.js" }, "icons": { "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "action": { "default_popup": "popup.html" }, "oauth2": { "client_id": "292556337651-kbmq2pduaejrol457a5s1089ut6ug0u9.apps.googleusercontent.com", "scopes": [ "openid" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "return-youtube-dislike.content-script.js" ], "run_at": "document_start", "css": [ "content-style.css" ] } ], "externally_connectable": { "matches": [ "*:\/\/*.youtube.com\/*" ] }, "web_accessible_resources": [ { "resources": [ "return-youtube-dislike.script.js" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ] } |