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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 } |