i-Eye Chrome extension

This extension inverts most of the colors on a page

Was ist i-Eye Chrome extension?

i-Eye Chrome extension ist eine Chrome-Erweiterung, die von jaytheman entwickelt wurde, und ihr Hauptmerkmal ist "This extension inverts most of the colors on a page".

Erweiterungsscreenshots

screenshot
screenshot

i-Eye Chrome extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie i-Eye Chrome extension-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

                        Inverts sites or pages to help prevent eye strain. Once a site is inverted it remembers to invert the site on the next visit.
Does not invert images, attempts to exclude videos, turns most white text into green text and makes you look like a awesome developer =D

If your text editor is black, your terminal is black and you code with the lights off, this extension is for you.                    

Grundlegende Informationen zur Erweiterung

Name i-Eye Chrome extension i-Eye Chrome extension
ID foljdpddalhhihmdkdibcokjejnnkmll
Offizielle URL https://chrome.google.com/webstore/detail/i-eye-chrome-extension/foljdpddalhhihmdkdibcokjejnnkmll
Beschreibung This extension inverts most of the colors on a page
Dateigröße 9.15 KB
Installationsanzahl 227
Aktuelle Version 1.1.0
Letztes Update 2015-11-16
Veröffentlichungsdatum 2015-11-15
Bewertung 3.00/5 Insgesamt 1 Bewertungen
Entwickler jaytheman
Zahlungsart free
Erweiterungswebsite https://github.com/CynderR/i-Eye-extension
Hilfeseite URL https://github.com/CynderR/i-Eye-extension
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "i-Eye Chrome extension",
    "description": "This extension inverts most of the colors on a page",
    "version": "1.1.0",
    "browser_action": {
        "default_icon": "ieye.png",
        "default_popup": "interface.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "i-eye-localStorage.js",
                "i-eye.js"
            ],
            "matchAboutBlank": true
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "i-eye-localStorage.js",
                "i-eye-startDark.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "activeTab",
        "tabs"
    ]
}