WhiteBuster

Busting whites since 2017

什麼是WhiteBuster?

WhiteBuster是由kofifus開發的Chrome擴展程式,該擴展的主要功能是“Busting whites since 2017”。

擴展截圖

screenshot

下載WhiteBuster擴展crx文件

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

擴展使用說明

                        WhiteBuster will do it's best to turn all white backgrounds on the page to nicer eye -friendly colors ...

- Converts all background-color of rgb/a(255,255,255), rgb/a(254,254,254) to selected color preserving opacity

- does it's best to deal with transparent items, iframes and runtime created elements

Caveats:

- White background images cannot be transformed

- Badly coded pages that run code depending on background-color being white may break. (I haven't found any so far ...)

Repo:

- https://github.com/kofifus/WhiteBuster

Support:

- Please post an issue at the repo                    

擴展基本資訊

名稱 WhiteBuster WhiteBuster
ID kkgacobcjapebahjhkabbkacbpmddeco
官方網址 https://chromewebstore.google.com/detail/whitebuster/kkgacobcjapebahjhkabbkacbpmddeco
簡介 Busting whites since 2017
檔案大小 23.04 KB
安裝次數 1,171
目前版本 1.4.7
更新時間 2017-09-14
上架時間 2017-09-14
評分 4.57/5 共 14 次評分
開發者 kofifus
付費類型 free
擴展官網 https://github.com/kofifus/WhiteBuster
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WhiteBuster",
    "short_name": "WhiteBuster",
    "version": "1.4.7",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApQeWqigHEj9fTGCq1lIGGTpTsgTURJ7ErdEBCD\/eTy5uTic++YMpnbgXWDUsRAqr14NKQUiU4WKzhbj4c0ROBOxHcppRxoeUFvXPBagWcb1mOR8xqrJooBKtab\/k9gZW1OOzu5YkCCkQB+jMkdSmpkT5WB1bNtBJXc1e9LQtay5vtruXck9c98RUtBlbHx\/oepLWAzySNXPlfywvhC4Es0sMoOeN6SdnesoIHFu2b3lBfSmbw6MZjjs2vmCdLDAGCGMDGvinSBAAC5Eo4+Bf+HlGgrOEmrsk79KjlVEoMR7GXUqXnK\/LimR6U8UpX9aCX9njvmyt0sU6u5dgIUbPRwIDAQAB",
    "description": "Busting whites since 2017",
    "browser_action": {
        "default_icon": "whitebuster128.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "whitebuster.js"
            ],
            "css": [
                "whitebuster.css"
            ],
            "run_at": "document_start",
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "whitebuster16.png",
        "48": "whitebuster48.png",
        "128": "whitebuster128.png"
    }
}