Sold By Amazon

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

Apa itu Sold By Amazon?

Sold By Amazon adalah ekstensi Chrome yang dikembangkan oleh phunglovescats, dan fitur utamanya adalah "This extension reloads any Amazon search results with only products sold and shipped by Amazon.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Sold By Amazon

Unduh file ekstensi Sold By Amazon dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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!                    

Informasi Dasar Ekstensi

Nama Sold By Amazon Sold By Amazon
ID pjckdfjhkhlnohkhbkolbmpljgfcnmae
URL Resmi https://chromewebstore.google.com/detail/sold-by-amazon/pjckdfjhkhlnohkhbkolbmpljgfcnmae
Deskripsi This extension reloads any Amazon search results with only products sold and shipped by Amazon.
Ukuran File 11.5 KB
Jumlah Instalasi 234
Versi Saat Ini 1.0
Terakhir Diperbarui 2023-07-05
Tanggal Publikasi 2023-07-04
Penilaian 4.33/5 Total 3 Penilaian
Pengembang phunglovescats
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}