Color Search

Adds a Google search card for when a color is searched.

Color Searchคืออะไร?

Color Search เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ian Hoegen และคุณลักษณะหลักของมันคือ "Adds a Google search card for when a color is searched."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Color Search

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

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

                        This extension checks the Google search bar, and will add a color card to the top of the search result if the query is a color. This is great for if you need to find the associated color to a RGB color code, or a Hex code. 

Donations are accepted at https://www.paypal.me/ihoegen/5
Github: https://github.com/ihoegen/ColorSearch                    

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

ชื่อ Color Search Color Search
ID eogeejfgkddjjibpecmcgdohpknkjabo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/color-search/eogeejfgkddjjibpecmcgdohpknkjabo
คำอธิบาย Adds a Google search card for when a color is searched.
ขนาดไฟล์ 192 KB
จำนวนการติดตั้ง 503
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2016-04-09
วันที่เผยแพร่ 2016-04-09
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Ian Hoegen
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ihoegen/ColorSearch
URL หน้าช่วยเหลือ https://github.com/ihoegen/ColorSearch/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Color Search",
    "description": "Adds a Google search card for when a color is searched. ",
    "version": "1.0.2",
    "icons": {
        "128": "icon.png",
        "48": "icon.png",
        "256": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/*"
            ],
            "js": [
                "main.min.js"
            ]
        }
    ]
}