Shop Safe

A chrome extension that helps to identify where an amazon product is originated from.

Vad är Shop Safe?

Shop Safe är en Chrome-tillägg utvecklad av Shop Safe, och dess huvudfunktion är "A chrome extension that helps to identify where an amazon product is originated from.".

Tilläggsskärmbilder

screenshot

Ladda ner Shop Safe-förlängningens CRX-fil

Ladda ner Shop Safe-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        This is an extension which provides the country information of an amazon product on the product detail page.                    

Grundläggande Information om Tillägg

Namn Shop Safe Shop Safe
ID helhdfggaejjdpkfkbpfbnchljaobhbp
Officiell webbadress https://chromewebstore.google.com/detail/shop-safe/helhdfggaejjdpkfkbpfbnchljaobhbp
Beskrivning A chrome extension that helps to identify where an amazon product is originated from.
Filstorlek 1.01 MB
Antal Installationer 182
Aktuell Version 1.0.0
Senast Uppdaterad 2023-11-07
Publiceringsdatum 2023-11-06
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare Shop Safe
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://cromeprivacypolicy.s3.amazonaws.com/safeshop-privacypolicy.html
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A chrome extension that helps to identify where an amazon product is originated from.",
    "version": "1.0.0",
    "manifest_version": 3,
    "name": "Shop Safe",
    "icons": {
        "192": ".\/assets\/icons\/icon-192.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.amazon.com\/*\/dp\/*",
                "https:\/\/www.amazon.com\/dp\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "css": [
                "content.styles.css"
            ],
            "run_at": "document_end"
        }
    ]
}