High Contrast

Change or invert the color scheme to make webpages easier to read.

Τι είναι το High Contrast;

Το High Contrast είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον chrome-a11y-extensions, και η κύρια λειτουργία του είναι "Change or invert the color scheme to make webpages easier to read.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης High Contrast

Λήψη αρχείων επέκτασης High Contrast σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        High Contrast lets you browse the web with your choice of several high-contrast color filters designed to make it easier to read text.

When you install this extension, all pages are "inverted", so black becomes white and white becomes black. Press the "browser action" icon in the toolbar to toggle it on and off, or customize your settings on a per-site basis. Use a convenient keyboard shortcut to quickly change your settings while you browse.

Other extensions try to change the default colors, but this ends up breaking many popular websites. Only this extension applies filters to your page that invert almost everything - the only exception is photos, which are left alone.

Also note that the Chrome web store and other built-in pages like the New Tab page and Settings pages are unaffected - extensions like this one are not allowed to modify them, by design.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα High Contrast High Contrast
ID djcfdncoelnlbldjfhinnjlhdjlikmph
Επίσημο URL https://chromewebstore.google.com/detail/high-contrast/djcfdncoelnlbldjfhinnjlhdjlikmph
Περιγραφή Change or invert the color scheme to make webpages easier to read.
Μέγεθος Αρχείου 155 KB
Αριθμός Εγκαταστάσεων 460,710
Τρέχουσα Έκδοση 0.9.3
Τελευταία Ενημέρωση 2016-11-08
Ημερομηνία Δημοσίευσης 2016-11-08
Αξιολόγηση 3.48/5 Συνολικά 5898 Αξιολογήσεις
Προγραμματιστής chrome-a11y-extensions
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://code.google.com/p/google-axs-chrome/
URL της Σελίδας Πολιτικής Απορρήτου https://policies.google.com/privacy?hl=en
Υποστηριζόμενες Γλώσσες id,ms,de,en,en-GB,fil,fr,sw,nl,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_HIGHCONTRAST_APPNAME__",
    "version": "0.9.3",
    "description": "__MSG_HIGHCONTRAST_APPDESC__",
    "manifest_version": 2,
    "permissions": [
        "",
        "tabs"
    ],
    "background": {
        "scripts": [
            "common.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "highcontrast-19.png",
        "default_title": "__MSG_HIGHCONTRAST_APPNAME__",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "highcontrast.js"
            ]
        }
    ],
    "icons": {
        "16": "highcontrast-16.png",
        "48": "highcontrast-48.png",
        "128": "highcontrast-128.png"
    },
    "default_locale": "en"
}