NoVote
Allows removal of various features from Reddit's interface such as upvote buttons and comment scores.
NoVote क्या है?
NoVote dan-lovelace द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows removal of various features from Reddit's interface such as upvote buttons and comment scores."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में NoVote एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Browse Reddit without all the noise by toggling different features on and off. Customizable options give control over the following: • Upvote and downvote buttons • Post scores • Comment scores • Comments links • Post comment counts • User karma • Gild badges • Notifications button * Reddit is constantly making changes to their layouts which means the extension may not always work as expected. If you are experiencing issues, please open a ticket by selecting the 'Support' tab and clicking 'Contact the developer'. Thanks to everyone that has created a ticket in the past, it's been very helpful in keeping things up to date so far.
एक्सटेंशन की मूल जानकारी
नाम | NoVote |
ID | kepihiliocoofjjbgmcmalnjmeclpnga |
आधिकारिक URL | https://chromewebstore.google.com/detail/novote/kepihiliocoofjjbgmcmalnjmeclpnga |
विवरण | Allows removal of various features from Reddit's interface such as upvote buttons and comment scores. |
फ़ाइल का आकार | 114 KB |
स्थापना संख्या | 184 |
वर्तमान संस्करण | 0.1.66 |
अंतिम अपडेट | 2022-01-03 |
प्रकाशन तिथि | 2019-12-01 |
रेटिंग | 3.84/5 कुल 19 रेटिंग्स |
डेवलपर | dan-lovelace |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/dan-lovelace/novote |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "NoVote", "manifest_version": 2, "version": "0.1.66", "description": "Allows removal of various features from Reddit's interface such as upvote buttons and comment scores.", "permissions": [ "storage" ], "background": { "scripts": [ "bundle.background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*.reddit.com\/*", "https:\/\/*.reddit.com\/*" ], "js": [ "bundle.content.js" ], "run_at": "document_start" } ], "page_action": { "default_icon": "images\/novote32.png", "default_title": "NoVote", "default_popup": ".\/popup\/index.html" }, "icons": { "16": "images\/novote16.png", "32": "images\/novote32.png", "48": "images\/novote48.png", "128": "images\/novote128.png" } } |