i-Eye Chrome extension

This extension inverts most of the colors on a page

i-Eye Chrome extensionคืออะไร?

i-Eye Chrome extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jaytheman และคุณลักษณะหลักของมันคือ "This extension inverts most of the colors on a page"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย i-Eye Chrome extension

ดาวน์โหลดไฟล์ส่วนขยาย i-Eye Chrome extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ i-Eye Chrome extension i-Eye Chrome extension
ID foljdpddalhhihmdkdibcokjejnnkmll
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/i-eye-chrome-extension/foljdpddalhhihmdkdibcokjejnnkmll
คำอธิบาย This extension inverts most of the colors on a page
ขนาดไฟล์ 9.15 KB
จำนวนการติดตั้ง 227
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2015-11-16
วันที่เผยแพร่ 2015-11-15
คะแนน 3.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา jaytheman
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/CynderR/i-Eye-extension
URL หน้าช่วยเหลือ https://github.com/CynderR/i-Eye-extension
ภาษาที่รองรับ 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"
    ]
}