Battlescreen Color Blind

This is a simple extension for any Battlefield 4 players that use the color blind settings and the Battlescreen. The extension is…

Was ist Battlescreen Color Blind?

Battlescreen Color Blind ist eine Chrome-Erweiterung, die von str8astud3nt entwickelt wurde, und ihr Hauptmerkmal ist "This is a simple extension for any Battlefield 4 players that use the color blind settings and the Battlescreen. The extension is…".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Battlescreen Color Blind-Erweiterungs-CRX-Datei herunterladen

Laden Sie Battlescreen Color Blind-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This is a simple extension for any Battlefield 4 players that use the color blind settings and the Battlescreen.

The extension is easy to use, when on the Battlescreen just click the extension icon in the address bar and select which color blind mode you are currently using. You can also select custom and use a custom color of your choosing. When you have the colors that you want to use, just click the update button and the page should reload with the new colors.

The preview colors aren't the exact colors that will show up on the map, so don't worry if the preview doesn't look right.                    

Grundlegende Informationen zur Erweiterung

Name Battlescreen Color Blind Battlescreen Color Blind
ID pgphjhknniifcjodmhiajkhciaoegjpg
Offizielle URL https://chromewebstore.google.com/detail/battlescreen-color-blind/pgphjhknniifcjodmhiajkhciaoegjpg
Beschreibung This is a simple extension for any Battlefield 4 players that use the color blind settings and the Battlescreen. The extension is…
Dateigröße 50.34 KB
Installationsanzahl 31
Aktuelle Version 0.2
Letztes Update 2014-02-04
Veröffentlichungsdatum 2014-02-03
Bewertung 4.67/5 Insgesamt 3 Bewertungen
Entwickler str8astud3nt
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Battlescreen Color Blind",
    "version": "0.2",
    "manifest_version": 2,
    "page_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png",
            "128": "icon128.png"
        },
        "default_title": "Battlescreen Color Blind",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/battlelog.battlefield.com\/bf4\/battlescreen\/show\/*",
                "https:\/\/battlelog.battlefield.com\/bf4\/battlescreen\/show\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "webNavigation"
    ]
}