Cleaner Reddit
This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI.
Cleaner Reddit क्या है?
Cleaner Reddit Chema Leon द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Cleaner Reddit एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Update Version 1.2 - Now Cleaner Reddit allows you to toggle the visibility of Reddit's post flairs. Update Version 1.1 - Now Cleaner Reddit allows you to toggle the visibility of Reddit's recommended links. Cleaner Reddit allows users to toggle the visibility of Reddit's sidebar, their thumbnails or their voting arrows for a cleaner interface while visiting reddit.com.
एक्सटेंशन की मूल जानकारी
नाम | Cleaner Reddit |
ID | fbmjfgjjjpjkkmiclfbhgaemglcjpjlh |
आधिकारिक URL | https://chromewebstore.google.com/detail/cleaner-reddit/fbmjfgjjjpjkkmiclfbhgaemglcjpjlh |
विवरण | This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI. |
फ़ाइल का आकार | 430 KB |
स्थापना संख्या | 47 |
वर्तमान संस्करण | 1.2 |
अंतिम अपडेट | 2018-11-09 |
प्रकाशन तिथि | 2018-11-09 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | Chema Leon |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Cleaner Reddit", "description": "This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI.", "version": "1.2", "background": { "scripts": [ "popup.js" ], "persistent": true }, "browser_action": { "name": "Toggle Sidebar", "icons": [ "icon.png" ], "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "tabs", "background", "storage", "*:\/\/www.reddit.com\/*", "*:\/\/reddit.com\/*" ], "content_scripts": [ { "js": [ "ThirdParty\/jquery-3.2.1.min.js", "popup.js" ], "matches": [ "*:\/\/www.reddit.com\/*", "*:\/\/reddit.com\/*" ] } ] } |