WhiteBuster

Busting whites since 2017

WhiteBuster क्या है?

WhiteBuster kofifus द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Busting whites since 2017"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में WhiteBuster एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
    }
}