i-Eye Chrome extension

This extension inverts most of the colors on a page

i-Eye Chrome extension là gì?

i-Eye Chrome extension là một tiện ích mở rộng Chrome được phát triển bởi jaytheman, và tính năng chính của nó là "This extension inverts most of the colors on a page".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng i-Eye Chrome extension

Tải xuống các tệp mở rộng i-Eye Chrome extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên i-Eye Chrome extension i-Eye Chrome extension
ID foljdpddalhhihmdkdibcokjejnnkmll
URL Chính Thức https://chrome.google.com/webstore/detail/i-eye-chrome-extension/foljdpddalhhihmdkdibcokjejnnkmll
Mô tả This extension inverts most of the colors on a page
Kích Thước Tệp 9.15 KB
Số Lần Cài Đặt 227
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2015-11-16
Ngày Phát Hành 2015-11-15
Đánh Giá 3.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển jaytheman
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/CynderR/i-Eye-extension
URL Trang Trợ Giúp https://github.com/CynderR/i-Eye-extension
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}