Notion Dark Mode - PNG background color

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

Vad är Notion Dark Mode - PNG background color?

Notion Dark Mode - PNG background color är en Chrome-tillägg utvecklad av https://a2tt.me, och dess huvudfunktion är "Add Background Color to enhance the visibility of the letters in the PNG image".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Notion Dark Mode - PNG background color-förlängningens CRX-fil

Ladda ner Notion Dark Mode - PNG background color-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Notion Dark Mode - PNG background color Notion Dark Mode - PNG background color
ID paegjdkaeijijioinnhahenmnmlmlfil
Officiell webbadress https://chromewebstore.google.com/detail/notion-dark-mode-png-back/paegjdkaeijijioinnhahenmnmlmlfil
Beskrivning Add Background Color to enhance the visibility of the letters in the PNG image
Filstorlek 159 KB
Antal Installationer 44
Aktuell Version 1.0.0
Senast Uppdaterad 2022-07-30
Publiceringsdatum 2022-03-01
Utvecklare https://a2tt.me
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/a2tt/Notion-PNG-Background-Color
Stödda Språk 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:*;"
    }
}