Curl Checker

Check to see if your hair products are Curly Girl Method approved

Curl Checkerคืออะไร?

Curl Checker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Emily James และคุณลักษณะหลักของมันคือ "Check to see if your hair products are Curly Girl Method approved"

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

screenshot
screenshot

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

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

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

                        Trying to find products that enhance your wavy or curly hair can be complicated. Curl Checker makes it easier by analyzing ingredients to see if products are CG friendly. We look for ingredients like silicones, oils, waxes, and sulfates to let you know if a product is CG approved or if you should keep looking.

Checks ingredients on: Sephora.com, Ulta.com, and Walmart.com

Curl Checker is not associated with Lorraine Massey, the Curly Girl Method (“CGM”), or Curly Girl: The Handbook.                    

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

ชื่อ Curl Checker Curl Checker
ID hcgnkhnnhhdkjohmhglpkckkeiflahdn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/curl-checker/hcgnkhnnhhdkjohmhglpkckkeiflahdn
คำอธิบาย Check to see if your hair products are Curly Girl Method approved
ขนาดไฟล์ 1.33 MB
จำนวนการติดตั้ง 35
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2020-11-03
วันที่เผยแพร่ 2020-11-03
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Emily James
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Curl Checker",
    "version": "1.0",
    "description": "Check to see if your hair products are Curly Girl Method approved",
    "browser_action": {
        "default_title": "Curl Checker",
        "default_icon": "images\/32_pink.png"
    },
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "matches": [
                "https:\/\/*.sephora.com\/*",
                "https:\/\/*.ulta.com\/*",
                "https:\/\/*.walmart.com\/*"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "https:\/\/www.sephora.com\/",
        "https:\/\/www.ulta.com\/",
        "https:\/\/www.walmart.com\/"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "images\/16_pink.png",
        "32": "images\/32_pink.png",
        "48": "images\/48_pink.png",
        "128": "images\/128_pink.png"
    },
    "manifest_version": 2
}