Notion Dark Mode - PNG background color

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

什麼是Notion Dark Mode - PNG background color?

Notion Dark Mode - PNG background color是由https://a2tt.me開發的Chrome擴展程式,該擴展的主要功能是“Add Background Color to enhance the visibility of the letters in the PNG image”。

擴展截圖

screenshot
screenshot

下載Notion Dark Mode - PNG background color擴展crx文件

下載Notion Dark Mode - PNG background color擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Notion Dark Mode - PNG background color Notion Dark Mode - PNG background color
ID paegjdkaeijijioinnhahenmnmlmlfil
官方網址 https://chromewebstore.google.com/detail/notion-dark-mode-png-back/paegjdkaeijijioinnhahenmnmlmlfil
簡介 Add Background Color to enhance the visibility of the letters in the PNG image
檔案大小 159 KB
安裝次數 44
目前版本 1.0.0
更新時間 2022-07-30
上架時間 2022-03-01
開發者 https://a2tt.me
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/a2tt/Notion-PNG-Background-Color
支援的語言 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:*;"
    }
}