iHerb Cruelty Check
Checks Wether a Product on iHerb Is Cruelty Free Or Not
O que é iHerb Cruelty Check?
iHerb Cruelty Check é uma extensão do Chrome desenvolvida por Alon Kishoni, e sua principal característica é "Checks Wether a Product on iHerb Is Cruelty Free Or Not".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão iHerb Cruelty Check
Baixe arquivos de extensão iHerb Cruelty Check no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
While shopping on iHerb.com this extension will help you choose products from companies that DO NOT test on animals. Every time you view a product on iHerb (mainly cosmetics) - a popup will show telling you wether or not you should avoid...
Informações Básicas da Extensão
Nome | |
ID | jojaifeadhbbekhnkmommcbpjomkleab |
URL Oficial | https://chrome.google.com/webstore/detail/iherb-cruelty-check/jojaifeadhbbekhnkmommcbpjomkleab |
Descrição | Checks Wether a Product on iHerb Is Cruelty Free Or Not |
Tamanho do Arquivo | 13.21 KB |
Contagem de Instalações | 77 |
Versão Atual | 0.0.0.1 |
Última Atualização | 2019-12-30 |
Data de Publicação | 2019-12-30 |
Desenvolvedor | Alon Kishoni |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "iHerb Cruelty Check", "version": "0.0.0.1", "description": "Checks Wether a Product on iHerb Is Cruelty Free Or Not", "permissions": [ "activeTab", "declarativeContent", "storage", "contextMenus", "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.iherb.com\/*" ], "js": [ "content.js" ], "match_about_blank": true, "all_frames": true } ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" } }, "icons": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" }, "manifest_version": 2 } |