WhiteBuster
Busting whites since 2017
Cos'è WhiteBuster?
WhiteBuster è un'estensione di Chrome sviluppata da kofifus, e la sua funzione principale è "Busting whites since 2017".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione WhiteBuster
Scarica i file di estensione WhiteBuster in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
                        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                     Informazioni di Base sull'Estensione
| Nome |   |  
| ID | kkgacobcjapebahjhkabbkacbpmddeco | 
| URL Ufficiale | https://chromewebstore.google.com/detail/whitebuster/kkgacobcjapebahjhkabbkacbpmddeco | 
| Descrizione | Busting whites since 2017 | 
| Dimensione del File | 23.04 KB | 
| Conteggio Installazioni | 1,171 | 
| Versione Corrente | 1.4.7 | 
| Ultimo Aggiornamento | 2017-09-14 | 
| Data di Pubblicazione | 2017-09-14 | 
| Valutazione | 4.57/5 Totale 14 Valutazioni | 
| Sviluppatore | kofifus | 
| Tipo di Pagamento | free | 
| Sito Web dell'Estensione | https://github.com/kofifus/WhiteBuster | 
| Lingue Supportate | 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"
    }
}  |  |