Curl Checker
Check to see if your hair products are Curly Girl Method approved
Curl Checker क्या है?
Curl Checker Emily James द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Check to see if your hair products are Curly Girl Method approved"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Curl Checker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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 } |