Sold By Amazon

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

Co to jest Sold By Amazon?

Sold By Amazon to rozszerzenie Chrome opracowane przez phunglovescats, a jego główną funkcją jest „This extension reloads any Amazon search results with only products sold and shipped by Amazon.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Sold By Amazon

Pobierz pliki rozszerzeń Sold By Amazon 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

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa Sold By Amazon Sold By Amazon
ID pjckdfjhkhlnohkhbkolbmpljgfcnmae
Oficjalny URL https://chromewebstore.google.com/detail/sold-by-amazon/pjckdfjhkhlnohkhbkolbmpljgfcnmae
Opis This extension reloads any Amazon search results with only products sold and shipped by Amazon.
Rozmiar pliku 11.5 KB
Liczba instalacji 234
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2023-07-05
Data Publikacji 2023-07-04
Ocena 4.33/5 Łącznie 3 Oceny
Deweloper phunglovescats
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}