iHerb Cruelty Check
Checks Wether a Product on iHerb Is Cruelty Free Or Not
什么是iHerb Cruelty Check?
iHerb Cruelty Check是由Alon Kishoni开发的Chrome扩展程序,该扩展的主要功能是“Checks Wether a Product on iHerb Is Cruelty Free Or Not”。
扩展截图
下载iHerb Cruelty Check扩展crx文件
下载iHerb Cruelty Check扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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... 扩展基本信息
| 名称 | |
| ID | jojaifeadhbbekhnkmommcbpjomkleab |
| 官方URL | https://chrome.google.com/webstore/detail/iherb-cruelty-check/jojaifeadhbbekhnkmommcbpjomkleab |
| 简介 | Checks Wether a Product on iHerb Is Cruelty Free Or Not |
| 文件大小 | 13.21 KB |
| 安装次数 | 77 |
| 当前版本 | 0.0.0.1 |
| 更新时间 | 2019-12-30 |
| 上架时间 | 2019-12-30 |
| 开发者 | Alon Kishoni |
| 付费类型 | free |
| 支持的语言 | 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
} | |