YouTube Dislikes Democratized
Dislike video and other know the reason why!
YouTube Dislikes Democratized क्या है?
YouTube Dislikes Democratized https://democratizeddislikes.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Dislike video and other know the reason why!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube Dislikes Democratized एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
YouTube Dislike Counter Show others that you dislike a video, and also give them the reason why! Compatible with other dislike count Chrome extensions Important Notice: Because the user base for this extension is relatively low as of this moment, you are not likely to see user ratings on most videos. Help us spread the word of this extension. As more people begin using it, we'll start getting better quality ratings on videos! Videos that do not have community generated ratings will not show any overlay (modify the visible page in any way). To test if the extension is working properly, try this test page: https://www.youtube.com/watch?v=kxOuG8jMIgI
एक्सटेंशन की मूल जानकारी
नाम | YouTube Dislikes Democratized |
ID | pjhjaphpahenflpjgoddjdhidkbjlefo |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-dislikes-democrat/pjhjaphpahenflpjgoddjdhidkbjlefo |
विवरण | Dislike video and other know the reason why! |
फ़ाइल का आकार | 104 KB |
स्थापना संख्या | 32 |
वर्तमान संस्करण | 1.7.1 |
अंतिम अपडेट | 2022-01-08 |
प्रकाशन तिथि | 2022-01-05 |
रेटिंग | 1.00/5 कुल 1 रेटिंग्स |
डेवलपर | https://democratizeddislikes.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.democratizeddislikes.com |
सहायता पृष्ठ URL | https://www.democratizeddislikes.com/contact.html |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "default_locale": "en", "name": "YouTube Dislikes Democratized", "description": "Dislike video and other know the reason why!", "version": "1.7.1", "icons": { "48": "images\/icon-48.png", "96": "images\/icon-96.png", "128": "images\/icon-128.png", "256": "images\/icon-256.png", "512": "images\/icon-512.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "js": [ "intercept_rating.js" ], "run_at": "document_end", "matches": [ "*:\/\/youtube.com\/*", "*:\/\/*.youtube.com\/*" ], "all_frames": false }, { "js": [ "populate_page.js" ], "run_at": "document_idle", "matches": [ "*:\/\/youtube.com\/*", "*:\/\/*.youtube.com\/*" ] } ], "action": { "default_icon": { "16": "images\/toolbar-icon-16.png", "19": "images\/toolbar-icon-19.png", "32": "images\/toolbar-icon-32.png", "38": "images\/toolbar-icon-38.png" } }, "host_permissions": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.democratizeddislikes.com\/*" ], "permissions": [ "tabs", "storage" ] } |