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
官方URL 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:*;"
    }
}