Curl Checker
Check to see if your hair products are Curly Girl Method approved
Hvad er Curl Checker?
Curl Checker er en Chrome-udvidelse udviklet af Emily James, og dens hovedfunktion er "Check to see if your hair products are Curly Girl Method approved".
Udvidelsesskærmbilleder
Download Curl Checker-udvidelses-CRX-fil
Download Curl Checker-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Curl Checker |
ID | hcgnkhnnhhdkjohmhglpkckkeiflahdn |
Officiel URL | https://chromewebstore.google.com/detail/curl-checker/hcgnkhnnhhdkjohmhglpkckkeiflahdn |
Beskrivelse | Check to see if your hair products are Curly Girl Method approved |
Filstørrelse | 1.33 MB |
Antal Installationer | 35 |
Nuværende Version | 1.0 |
Senest Opdateret | 2020-11-03 |
Udgivelsesdato | 2020-11-03 |
Bedømmelse | 1.00/5 Samlet 1 Bedømmelser |
Udvikler | Emily James |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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 } |