Pinterest Dark Theme

Adds a dark theme to pinterest, still a work in progress so expect some small bugs.

Co to jest Pinterest Dark Theme?

Pinterest Dark Theme to rozszerzenie Chrome opracowane przez 3mangaming97, a jego główną funkcją jest „Adds a dark theme to pinterest, still a work in progress so expect some small bugs.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Pinterest Dark Theme

Pobierz pliki rozszerzeń Pinterest Dark Theme 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

                        Makes Pinterest Dark Mode, still a Work In Progress so expect some small bugs.                    

Podstawowe informacje o rozszerzeniu

Nazwa Pinterest Dark Theme Pinterest Dark Theme
ID mceidbdmmmdiidebilljdcngglpmciae
Oficjalny URL https://chromewebstore.google.com/detail/pinterest-dark-theme/mceidbdmmmdiidebilljdcngglpmciae
Opis Adds a dark theme to pinterest, still a work in progress so expect some small bugs.
Rozmiar pliku 501 KB
Liczba instalacji 10,000
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2022-10-05
Data Publikacji 2022-10-03
Ocena 3.78/5 Łącznie 93 Oceny
Deweloper 3mangaming97
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pinterest Dark Theme",
    "description": "Adds a dark theme to pinterest, still a work in progress so expect some small bugs.",
    "version": "1.0",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.pinterest.com\/*",
                "https:\/\/*.pinterest.com\/pin\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_start"
        }
    ]
}