Accupix

Provides an intuitive eyedropper to pick colors from webpages by providing a zoomed preview of the portion mouse points to.

ما هو Accupix؟

Accupix هو إضافة Chrome تم تطويرها بواسطة Sridhar PG، والميزة الرئيسية لها هي "Provides an intuitive eyedropper to pick colors from webpages by providing a zoomed preview of the portion mouse points to.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Accupix

قم بتنزيل ملفات الامتداد Accupix بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Eyedropper for Google Chrome. The extension also automatically copies the selected hex color code value to clipboard.

Some of the shortcuts that will come handy:

- Use Scroll to Zoom In/Out
- Use Arrow keys to move the cursor to precisely match the required pixel
- Enter key picks the pixel
- Esc closes the picker

For Issues or Feature requests, mail to: [email protected]                    

معلومات أساسية عن التمديد

الاسم Accupix Accupix
ID cnoeecignnjfddobmijconiockefppbg
عنوان URL الرسمي https://chrome.google.com/webstore/detail/accupix/cnoeecignnjfddobmijconiockefppbg
الوصف Provides an intuitive eyedropper to pick colors from webpages by providing a zoomed preview of the portion mouse points to.
حجم الملف 68.4 KB
عدد التثبيتات 243
النسخة الحالية 1.4.1
آخر تحديث 2014-01-02
تاريخ النشر 2014-01-02
تقييم 2.23/5 مجموع تقييمات 13
المطور Sridhar PG
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Accupix",
    "version": "1.4.1",
    "manifest_version": 2,
    "background": {
        "page": "bg\/background.html"
    },
    "browser_action": {
        "default_icon": "images\/picker_32.png",
        "default_title": "Color Picker"
    },
    "content_scripts": [
        {
            "css": [
                "content\/content.css"
            ],
            "js": [
                "tp\/jquery.js",
                "tp\/jquery.ba-throttle-debounce.js",
                "content\/content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "description": "Provides an intuitive eyedropper to pick colors from webpages by providing a zoomed preview of the portion mouse points to.",
    "icons": {
        "128": "images\/picker_128.png",
        "16": "images\/picker_16.png",
        "32": "images\/picker_32.png",
        "64": "images\/picker_64.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "contextMenus",
        "clipboardWrite"
    ]
}