iHerb Cruelty Check
Checks Wether a Product on iHerb Is Cruelty Free Or Not
iHerb Cruelty Check là gì?
iHerb Cruelty Check là một tiện ích mở rộng Chrome được phát triển bởi Alon Kishoni, và tính năng chính của nó là "Checks Wether a Product on iHerb Is Cruelty Free Or Not".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng iHerb Cruelty Check
Tải xuống các tệp mở rộng iHerb Cruelty Check dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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...
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | jojaifeadhbbekhnkmommcbpjomkleab |
URL Chính Thức | https://chrome.google.com/webstore/detail/iherb-cruelty-check/jojaifeadhbbekhnkmommcbpjomkleab |
Mô tả | Checks Wether a Product on iHerb Is Cruelty Free Or Not |
Kích Thước Tệp | 13.21 KB |
Số Lần Cài Đặt | 77 |
Phiên Bản Hiện Tại | 0.0.0.1 |
Cập Nhật Lần Cuối | 2019-12-30 |
Ngày Phát Hành | 2019-12-30 |
Nhà Phát Triển | Alon Kishoni |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } |