Tailwind Eye Dropper

Tailwind Eye Dropper is an open source extension that allows you to pick colors from web pages and convert them to a Tailwind preset

Tailwind Eye Dropperคืออะไร?

Tailwind Eye Dropper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tedisagolli และคุณลักษณะหลักของมันคือ "Tailwind Eye Dropper is an open source extension that allows you to pick colors from web pages and convert them to a Tailwind preset"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tailwind Eye Dropper

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

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

                        Pick a color from a page, convert it to the closest Tailwind preset, and automatically copy it to your clipboard.

Forked from http://eye-dropper.kepi.cz/
The original extension is great and I recommend supporting the author!
I added:
1. Convert to Tailwind
2. Automatically copy to clipboard


Icon made by Freepik (https://www.freepik.com) from www.flaticon.com                    

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

ชื่อ Tailwind Eye Dropper Tailwind Eye Dropper
ID nilniojlolabjlhbkhejlokeffohkanp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tailwind-eye-dropper/nilniojlolabjlhbkhejlokeffohkanp
คำอธิบาย Tailwind Eye Dropper is an open source extension that allows you to pick colors from web pages and convert them to a Tailwind preset
ขนาดไฟล์ 183 KB
จำนวนการติดตั้ง 256
เวอร์ชันปัจจุบัน 1.01
อัปเดตครั้งล่าสุด 2021-02-08
วันที่เผยแพร่ 2021-02-02
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา tedisagolli
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://tedis.me
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tailwind Eye Dropper",
    "version": "1.01",
    "version_name": "1.01",
    "manifest_version": 2,
    "description": "Tailwind Eye Dropper is an open source extension that allows you to pick colors from web pages and convert them to a Tailwind preset",
    "minimum_chrome_version": "49",
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "options_page": "options.html",
    "icons": {
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/icon_19.png",
            "38": "img\/icon_38.png"
        },
        "default_title": "Eye Dropper",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "clipboardWrite"
    ],
    "web_accessible_resources": [
        "inc\/jquery-2.1.0.min.js",
        "inc\/jquery.scrollstop.js",
        "js\/edropper2.js",
        "inject\/anchor-cursor-default.css",
        "inject\/anchor-cursor-crosshair.css",
        "inject\/edropper2.css"
    ],
    "commands": {
        "activate": {
            "suggested_key": {
                "default": "Alt+P"
            },
            "description": "Activate pick color from web page"
        }
    }
}