Notion Dark Mode - PNG background color

Add Background Color to enhance the visibility of the letters in the PNG image

Co to jest Notion Dark Mode - PNG background color?

Notion Dark Mode - PNG background color to rozszerzenie Chrome opracowane przez https://a2tt.me, a jego główną funkcją jest „Add Background Color to enhance the visibility of the letters in the PNG image”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Notion Dark Mode - PNG background color

Pobierz pliki rozszerzeń Notion Dark Mode - PNG background color 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

                        Add Background Color to enhance the visibility of the letters in the PNG image because dark letters in the transparent PNG image in Notion dark mode is nearly invisible.                    

Podstawowe informacje o rozszerzeniu

Nazwa Notion Dark Mode - PNG background color Notion Dark Mode - PNG background color
ID paegjdkaeijijioinnhahenmnmlmlfil
Oficjalny URL https://chromewebstore.google.com/detail/notion-dark-mode-png-back/paegjdkaeijijioinnhahenmnmlmlfil
Opis Add Background Color to enhance the visibility of the letters in the PNG image
Rozmiar pliku 159 KB
Liczba instalacji 44
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2022-07-30
Data Publikacji 2022-03-01
Deweloper https://a2tt.me
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/a2tt/Notion-PNG-Background-Color
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Add Background Color to enhance the visibility of the letters in the PNG image",
    "version": "1.0.0",
    "manifest_version": 3,
    "name": "Notion Dark Mode - PNG background color",
    "action": {
        "default_icon": "\/img\/icon_16.png",
        "default_popup": "\/html\/popup.html"
    },
    "icons": {
        "16": "\/img\/icon_16.png",
        "48": "\/img\/icon_48.png",
        "128": "\/img\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.notion.so\/*"
            ],
            "js": [
                "content_script.bundle.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "storage"
    ],
    "content_security_policy": {
        "extension_pages": "default-src 'self'; style-src 'self' 'unsafe-inline'; connect-src http:\/\/localhost:* ws:\/\/localhost:*;"
    }
}