Curl Checker
Check to see if your hair products are Curly Girl Method approved
什么是Curl Checker?
Curl Checker是由Emily James开发的Chrome扩展程序,该扩展的主要功能是“Check to see if your hair products are Curly Girl Method approved”。
扩展截图
下载Curl Checker扩展crx文件
下载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 |
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 } |