Dark Theme for Reddit
Simple flat dark grey theme for Reddit..
Dark Theme for Reddit क्या है?
Dark Theme for Reddit emano.waldeck द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simple flat dark grey theme for Reddit.."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Dark Theme for Reddit एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A simple smooth dark theme for Reddit. This theme can be toggled on and off from the toolbar button. When the extension is enabled, reddit.com is displayed in dark theme. This extension does not have any options at the moment. Just a toolbar button to get enabled or disabled.
एक्सटेंशन की मूल जानकारी
नाम | Dark Theme for Reddit |
ID | hlhoffhnpiiamppijcbelojhpnhpjdcg |
आधिकारिक URL | https://chromewebstore.google.com/detail/dark-theme-for-reddit/hlhoffhnpiiamppijcbelojhpnhpjdcg |
विवरण | Simple flat dark grey theme for Reddit.. |
फ़ाइल का आकार | 79.38 KB |
स्थापना संख्या | 2,676 |
वर्तमान संस्करण | 0.1.0 |
अंतिम अपडेट | 2018-06-07 |
प्रकाशन तिथि | 2018-06-07 |
रेटिंग | 4.22/5 कुल 9 रेटिंग्स |
डेवलपर | emano.waldeck |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://add0n.com/dark-theme.html?from=reddit |
सहायता पृष्ठ URL | http://add0n.com/dark-theme.html?from=reddit |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "0.1.0", "name": "Dark Theme for Reddit", "description": "Simple flat dark grey theme for Reddit..", "permissions": [ "storage" ], "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/www.reddit.com\/*" ], "js": [ "data\/inject.js" ], "run_at": "document_start", "all_frames": true } ], "web_accessible_resources": [ "data\/themes\/*.css" ], "icons": { "16": "data\/icons\/16.png", "19": "data\/icons\/19.png", "32": "data\/icons\/32.png", "38": "data\/icons\/38.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png", "256": "data\/icons\/256.png" }, "homepage_url": "http:\/\/add0n.com\/dark-theme.html?from=reddit", "browser_action": { "default_icon": { "16": "data\/icons\/16.png", "19": "data\/icons\/19.png", "32": "data\/icons\/32.png", "38": "data\/icons\/38.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png" } } } |