i-Eye Chrome extension

This extension inverts most of the colors on a page

Apa itu i-Eye Chrome extension?

i-Eye Chrome extension adalah ekstensi Chrome yang dikembangkan oleh jaytheman, dan fitur utamanya adalah "This extension inverts most of the colors on a page".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi i-Eye Chrome extension

Unduh file ekstensi i-Eye Chrome extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama i-Eye Chrome extension i-Eye Chrome extension
ID foljdpddalhhihmdkdibcokjejnnkmll
URL Resmi https://chrome.google.com/webstore/detail/i-eye-chrome-extension/foljdpddalhhihmdkdibcokjejnnkmll
Deskripsi This extension inverts most of the colors on a page
Ukuran File 9.15 KB
Jumlah Instalasi 227
Versi Saat Ini 1.1.0
Terakhir Diperbarui 2015-11-16
Tanggal Publikasi 2015-11-15
Penilaian 3.00/5 Total 1 Penilaian
Pengembang jaytheman
Tipe Pembayaran free
Situs Ekstensi https://github.com/CynderR/i-Eye-extension
URL Halaman Bantuan https://github.com/CynderR/i-Eye-extension
Bahasa yang Didukung 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"
    ]
}