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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
    ]
}