Shop With Family - Hide All Prices

Hides all the prices from top shopping websites so you can focus on product not the price.

¿Qué es Shop With Family - Hide All Prices?

Shop With Family - Hide All Prices es una extensión de Chrome desarrollada por https://thetechbasket.com, y su función principal es "Hides all the prices from top shopping websites so you can focus on product not the price.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Shop With Family - Hide All Prices

Descarga archivos de extensión Shop With Family - Hide All Prices 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

                        What this extension does it hides all the prices on the major E-Commerce websites.

The goal of this extension is not to complete the purchase but rather than explore the E-Commerce websites by looking at the product not looking at their prices.

You get a completely new experience while looking at the product and if you really like it you can add it to wishlist or cart and later on you can look at the prices and decide which one you actually like.

This extension does not use any kind of affiliate thing it will only hide the prices by using CSS.

# Quick Tips:

* Use Pricing Filter to make sure you wishlist product under your budget
* Focus on product and quality
* On and Off by clicking on the extension icon whenever you want to as per needs


There might be very limited websites currently and if you think your favourite website is not yet supported you can message us and we will add it.


Currently Supported Websites: All the Major Shopping Websites of India, US and Global.

Check the full list of websites where the extension currenlty works here:  https://apps.thetechbasket.com/shopwithfamily/


Mail Us if any website you want us to add: [email protected]

---

Icon Used from https://icons8.com/

Privacy Policy - https://apps.thetechbasket.com/shopwithfamily/privacy_policy                    

Información Básica de la Extensión

Nombre Shop With Family - Hide All Prices Shop With Family - Hide All Prices
ID oohachhjalffnijmimfehhmppedmdljk
URL Oficial https://chromewebstore.google.com/detail/shop-with-family-hide-all/oohachhjalffnijmimfehhmppedmdljk
Descripción Hides all the prices from top shopping websites so you can focus on product not the price.
Tamaño del Archivo 20.33 KB
Cantidad de Instalaciones 157
Versión Actual 2.0.0
Última Actualización 2023-11-18
Fecha de Publicación 2019-06-21
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador https://thetechbasket.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.thetechbasket.com/
URL de la Página de Ayuda https://www.thetechbasket.com/contact-us/
URL de la Página de Política de Privacidad https://www.thetechbasket.com/privacy-policy
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Shop With Family - Hide All Prices",
    "short_name": "Shop With Family",
    "version": "2.0.0",
    "author": "Sumit Kumar Yadav",
    "description": "Hides all the prices from top shopping websites so you can focus on product not the price.",
    "content_security_policy": {
        "extension_pages": "script-src 'self' ; object-src 'self'"
    },
    "action": {
        "default_icon": "on.png",
        "default_title": "icon"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.flipkart.com\/*",
                "https:\/\/www.myntra.com\/*",
                "https:\/\/www.amazon.in\/*",
                "https:\/\/www.amazon.com\/*",
                "https:\/\/www.amazon.co.uk\/*",
                "https:\/\/www.amazon.com.au\/*",
                "https:\/\/www.amazon.com.br\/*",
                "https:\/\/www.amazon.ca\/*",
                "https:\/\/www.amazon.cn\/*",
                "https:\/\/www.amazon.fr\/*",
                "https:\/\/www.amazon.de\/*",
                "https:\/\/www.amazon.it\/*",
                "https:\/\/www.amazon.co.jp\/*",
                "https:\/\/www.amazon.com.mx\/*",
                "https:\/\/www.amazon.nl\/*",
                "https:\/\/www.amazon.es\/*",
                "https:\/\/www.amazon.ae\/*",
                "https:\/\/www.amazon.co.uk\/*",
                "https:\/\/www.ebay.com\/*",
                "https:\/\/www.snapdeal.com\/*",
                "https:\/\/www.jabong.com\/*",
                "https:\/\/www.homeshop18.com\/*",
                "https:\/\/www.infibeam.com\/*",
                "https:\/\/www.shopclues.com\/*",
                "https:\/\/www.firstcry.com\/*",
                "https:\/\/www.walmart.com\/*",
                "https:\/\/www.etsy.com\/*",
                "https:\/\/www.homedepot.com\/*",
                "https:\/\/www.target.com\/*",
                "https:\/\/*.aliexpress.com\/*",
                "https:\/\/www.nike.com\/*",
                "https:\/\/www.nike.ca\/*",
                "https:\/\/www.ralphlauren.global\/*",
                "https:\/\/www.ralphlauren.ca\/*"
            ],
            "js": [
                "scripts\/content.js"
            ],
            "css": [
                "css\/styles.css"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "css\/searchStyles.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    }
}