Sold By Amazon

This extension reloads any Amazon search results with only products sold and shipped by Amazon.

Cos'è Sold By Amazon?

Sold By Amazon è un'estensione di Chrome sviluppata da phunglovescats, e la sua funzione principale è "This extension reloads any Amazon search results with only products sold and shipped by Amazon.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Sold By Amazon

Scarica i file di estensione Sold By Amazon in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Ever wanted to just see products that are sold and shipped by Amazon? (Lots of promotions require items be sold and shipped by Amazon, for instance.)

Simply do a search on Amazon and then click this extension, and it will reload with items that are sold and shipped by Amazon.

Thanks for downloading!                    

Informazioni di Base sull'Estensione

Nome Sold By Amazon Sold By Amazon
ID pjckdfjhkhlnohkhbkolbmpljgfcnmae
URL Ufficiale https://chromewebstore.google.com/detail/sold-by-amazon/pjckdfjhkhlnohkhbkolbmpljgfcnmae
Descrizione This extension reloads any Amazon search results with only products sold and shipped by Amazon.
Dimensione del File 11.5 KB
Conteggio Installazioni 234
Versione Corrente 1.0
Ultimo Aggiornamento 2023-07-05
Data di Pubblicazione 2023-07-04
Valutazione 4.33/5 Totale 3 Valutazioni
Sviluppatore phunglovescats
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Sold By Amazon",
    "version": "1.0",
    "description": "This extension reloads any Amazon search results with only products sold and shipped by Amazon.",
    "permissions": [
        "activeTab"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.amazon.com\/*"
            ],
            "js": [
                ".\/scripts\/content.js"
            ]
        }
    ]
}