No awards for Reddit
Hide awards all over the redesigned and old Reddit (on posts, comments and more)
No awards for Reddit क्या है?
No awards for Reddit datguyducky द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hide awards all over the redesigned and old Reddit (on posts, comments and more)"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में No awards for Reddit एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
I'm sure I'm not the only one annoyed by the awards on Reddit. So I created this simple extension to completely hide them (on posts, comments and more), so if you would like to browse Reddit without them please give this extension a go :) - it's fully open-source - 100% free - used daily by me so with constant support, and bug-fixes are developed and published as soon as possible - works both for redesigned and old versions of Reddit - comes with a settings pop-up so YOU can decide which awards you want to see, and which you prefer to fully hide
एक्सटेंशन की मूल जानकारी
नाम | |
ID | ehpnjdkpdllckhmbglbpdbmddcnloeep |
आधिकारिक URL | https://chrome.google.com/webstore/detail/ehpnjdkpdllckhmbglbpdbmddcnloeep |
विवरण | Hide awards all over the redesigned and old Reddit (on posts, comments and more) |
फ़ाइल का आकार | 20.5 KB |
स्थापना संख्या | 93 |
वर्तमान संस्करण | 2.2.3 |
अंतिम अपडेट | 2023-06-08 |
प्रकाशन तिथि | 2020-08-04 |
रेटिंग | 4.83/5 कुल 6 रेटिंग्स |
डेवलपर | datguyducky |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/datguyducky/no-awards-fr |
सहायता पृष्ठ URL | https://github.com/datguyducky/no-awards-fr |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "2.2.3", "name": "No awards for Reddit", "description": "Hide awards all over the redesigned and old Reddit (on posts, comments and more)", "author": "datguyducky", "icons": { "48": "no-awards48.png", "96": "no-awards96.png", "128": "no-awards128.png" }, "browser_action": { "default_icon": { "16": "no-awards16.png", "24": "no-awards24.png", "32": "no-awards32.png" }, "default_title": "No Awards for Reddit", "default_popup": "no-awards-menu.html" }, "permissions": [ "storage", "tabs" ], "content_scripts": [ { "matches": [ "*:\/\/*.reddit.com\/*" ], "run_at": "document_start", "js": [ "no-awards.js" ] } ], "web_accessible_resources": [ "css\/commentsAndPostsAwards.css", "css\/getCoinsBtn.css", "css\/giveAwardsBtn.css", "css\/profileAwards.css" ] } |