iHerb Cruelty Check

Checks Wether a Product on iHerb Is Cruelty Free Or Not

Co to jest iHerb Cruelty Check?

iHerb Cruelty Check to rozszerzenie Chrome opracowane przez Alon Kishoni, a jego główną funkcją jest „Checks Wether a Product on iHerb Is Cruelty Free Or Not”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia iHerb Cruelty Check

Pobierz pliki rozszerzeń iHerb Cruelty Check w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa iHerb Cruelty Check iHerb Cruelty Check
ID jojaifeadhbbekhnkmommcbpjomkleab
Oficjalny URL https://chrome.google.com/webstore/detail/iherb-cruelty-check/jojaifeadhbbekhnkmommcbpjomkleab
Opis Checks Wether a Product on iHerb Is Cruelty Free Or Not
Rozmiar pliku 13.21 KB
Liczba instalacji 77
Aktualna Wersja 0.0.0.1
Ostatnia Aktualizacja 2019-12-30
Data Publikacji 2019-12-30
Deweloper Alon Kishoni
Typ Płatności free
Obsługiwane Języki 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
}