Curl Checker
Check to see if your hair products are Curly Girl Method approved
Qu'est-ce que Curl Checker ?
Curl Checker est une extension Chrome développée par Emily James, et sa fonction principale est "Check to see if your hair products are Curly Girl Method approved".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Curl Checker
Téléchargez les fichiers d'extension Curl Checker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Curl Checker |
ID | hcgnkhnnhhdkjohmhglpkckkeiflahdn |
URL Officiel | https://chromewebstore.google.com/detail/curl-checker/hcgnkhnnhhdkjohmhglpkckkeiflahdn |
Description | Check to see if your hair products are Curly Girl Method approved |
Taille du Fichier | 1.33 MB |
Nombre d'Installations | 35 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2020-11-03 |
Date de Publication | 2020-11-03 |
Évaluation | 1.00/5 Total 1 Évaluations |
Développeur | Emily James |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } |