Shopping Helper: Find the Best Price

Shopping Helper is a price comparison tool for e-commerce that helps users find the best price.

¿Qué es Shopping Helper: Find the Best Price?

Shopping Helper: Find the Best Price es una extensión de Chrome desarrollada por 3PM Solutions, y su función principal es "Shopping Helper is a price comparison tool for e-commerce that helps users find the best price.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Shopping Helper: Find the Best Price

Descarga archivos de extensión Shopping Helper: Find the Best Price en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Supported retailers:
– amazon.com
– walmart.com
– target.com
   
Frequently Asked Questions:
Q: Do you sell user data?
A: No we don’t.

Q: Is the extension free?
A: Currently, the extension is free. 

Q: Are you affiliated with any marketplaces?
A: No, we are not.

Thank you for choosing us. If you have any proposals or suggestions, please email us [email protected]                    

Información Básica de la Extensión

Nombre Shopping Helper: Find the Best Price Shopping Helper: Find the Best Price
ID hcjoidkfgioghboeledhickmamiomgon
URL Oficial https://chrome.google.com/webstore/detail/shopping-helper-find-the/hcjoidkfgioghboeledhickmamiomgon
Descripción Shopping Helper is a price comparison tool for e-commerce that helps users find the best price.
Tamaño del Archivo 579 KB
Cantidad de Instalaciones 138
Versión Actual 0.1.27.1
Última Actualización 2020-11-18
Fecha de Publicación 2020-10-02
Calificación 5.00/5 Total de 7 Calificaciones
Desarrollador 3PM Solutions
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Política de Privacidad https://3pmshop.com/privacy
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Shopping Helper: Find the Best Price",
    "author": "3PM Shop",
    "short_name": "3PM Shop",
    "description": "Shopping Helper is a price comparison tool for e-commerce that helps users find the best price.",
    "version": "0.1.27.1",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.amazon.com\/*",
                "https:\/\/*.amazon.com\/*"
            ],
            "js": [
                "amazon.js"
            ],
            "css": [
                "amazon.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "http:\/\/*.walmart.com\/*",
                "https:\/\/*.walmart.com\/*"
            ],
            "js": [
                "walmart.js"
            ],
            "css": [
                "walmart.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "http:\/\/*.target.com\/*",
                "https:\/\/*.target.com\/*"
            ],
            "js": [
                "target.js"
            ],
            "css": [
                "target.css"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "cookies",
        "http:\/\/*.amazon.com\/*",
        "https:\/\/*.amazon.com\/*",
        "http:\/\/*.walmart.com\/*",
        "https:\/\/*.walmart.com\/*",
        "http:\/\/*.target.com\/*",
        "https:\/\/*.target.com\/*",
        "http:\/\/*.3pmshop.com\/*",
        "https:\/\/*.3pmshop.com\/*"
    ],
    "browser_action": {
        "default_title": "Shopping Helper: Find the Best Price",
        "default_icon": {
            "16": "icon128.png",
            "48": "icon128.png",
            "96": "icon128.png",
            "128": "icon128.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon128.png",
        "48": "icon128.png",
        "96": "icon128.png",
        "128": "icon128.png"
    }
}