HN Dark Mode

Adds a dark theme for Hacker news (news.ycombinator.com).

HN Dark Mode क्या है?

HN Dark Mode Innovative Computer Software द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a dark theme for Hacker news (news.ycombinator.com)."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में HN Dark Mode एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Dark Mode can be configured to be always on or to match the operating system's dark/light theme.

This extension only runs on the Hacker News site. It will not collect or transmit ANY of your browsing activity.                    

एक्सटेंशन की मूल जानकारी

नाम HN Dark Mode HN Dark Mode
ID abpjflhoidbeaacggmdjoahiakcledna
आधिकारिक URL https://chromewebstore.google.com/detail/hn-dark-mode/abpjflhoidbeaacggmdjoahiakcledna
विवरण Adds a dark theme for Hacker news (news.ycombinator.com).
फ़ाइल का आकार 169 KB
स्थापना संख्या 56
वर्तमान संस्करण 1.0.3
अंतिम अपडेट 2022-04-07
प्रकाशन तिथि 2022-03-04
डेवलपर Innovative Computer Software
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://icsusa.com/public/hndarkmode.html
सहायता पृष्ठ URL https://icsusa.com/public/hndarkmode.html
गोपनीयता नीति पृष्ठ URL https://www.icsusa.com/public/absoluteprivacy.html
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "__MSG_extension_name__",
    "description": "__MSG_extension_description__",
    "version": "1.0.3",
    "icons": {
        "48": "images\/HackerNewsColor-48.png",
        "96": "images\/HackerNewsColor-96.png",
        "128": "images\/HackerNewsColor-128.png",
        "256": "images\/HackerNewsColor-256.png",
        "512": "images\/HackerNewsColor-512.png"
    },
    "background": {
        "service_worker": "background.js",
        "_scripts": [
            "background.js"
        ],
        "_persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ],
            "matches": [
                "*:\/\/news.ycombinator.com\/*"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ]
}