Product Dark

Turn Product Hunt dark for nighttime hunting.

Co to jest Product Dark?

Product Dark to rozszerzenie Chrome opracowane przez https://derekbtw.com, a jego główną funkcją jest „Turn Product Hunt dark for nighttime hunting.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Product Dark

Pobierz pliki rozszerzeń Product Dark w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        New in 3.0.1

- Made it so profile headers are shown
- Text color changed to white in profile settings
- Other color improvements throughout the site                    

Podstawowe informacje o rozszerzeniu

Nazwa Product Dark Product Dark
ID nbppndomekcebmldijnlmlmhidepkmbg
Oficjalny URL https://chromewebstore.google.com/detail/product-dark/nbppndomekcebmldijnlmlmhidepkmbg
Opis Turn Product Hunt dark for nighttime hunting.
Rozmiar pliku 699 KB
Liczba instalacji 68
Aktualna Wersja 3.0.1
Ostatnia Aktualizacja 2017-08-21
Data Publikacji 2017-08-21
Ocena 2.50/5 Łącznie 4 Oceny
Deweloper https://derekbtw.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://derekbtw.com
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Product Dark",
    "version": "3.0.1",
    "description": "Turn Product Hunt dark for nighttime hunting.",
    "manifest_version": 2,
    "permissions": [
        "https:\/\/producthunt.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.producthunt.com\/*"
            ],
            "js": [
                "product-dark.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Toggle Dark Theme"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "web_accessible_resources": [
        "product-dark.css"
    ]
}