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
} | |