i-Eye Chrome extension

This extension inverts most of the colors on a page

Qu'est-ce que i-Eye Chrome extension ?

i-Eye Chrome extension est une extension Chrome développée par jaytheman, et sa fonction principale est "This extension inverts most of the colors on a page".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension i-Eye Chrome extension

Téléchargez les fichiers d'extension i-Eye Chrome extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom i-Eye Chrome extension i-Eye Chrome extension
ID foljdpddalhhihmdkdibcokjejnnkmll
URL Officiel https://chrome.google.com/webstore/detail/i-eye-chrome-extension/foljdpddalhhihmdkdibcokjejnnkmll
Description This extension inverts most of the colors on a page
Taille du Fichier 9.15 KB
Nombre d'Installations 227
Version Actuelle 1.1.0
Dernière Mise à Jour 2015-11-16
Date de Publication 2015-11-15
Évaluation 3.00/5 Total 1 Évaluations
Développeur jaytheman
Type de Paiement free
Site Web de l'Extension https://github.com/CynderR/i-Eye-extension
URL de la Page d'Aide https://github.com/CynderR/i-Eye-extension
Langues Prises en Charge 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"
    ]
}