iHerb Cruelty Check
Checks Wether a Product on iHerb Is Cruelty Free Or Not
Cos'è iHerb Cruelty Check?
iHerb Cruelty Check è un'estensione di Chrome sviluppata da Alon Kishoni, e la sua funzione principale è "Checks Wether a Product on iHerb Is Cruelty Free Or Not".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione iHerb Cruelty Check
Scarica i file di estensione iHerb Cruelty Check in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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...
Informazioni di Base sull'Estensione
Nome | |
ID | jojaifeadhbbekhnkmommcbpjomkleab |
URL Ufficiale | https://chrome.google.com/webstore/detail/iherb-cruelty-check/jojaifeadhbbekhnkmommcbpjomkleab |
Descrizione | Checks Wether a Product on iHerb Is Cruelty Free Or Not |
Dimensione del File | 13.21 KB |
Conteggio Installazioni | 77 |
Versione Corrente | 0.0.0.1 |
Ultimo Aggiornamento | 2019-12-30 |
Data di Pubblicazione | 2019-12-30 |
Sviluppatore | Alon Kishoni |
Tipo di Pagamento | free |
Lingue Supportate | 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 } |