Sold By Amazon

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

Vad är Sold By Amazon?

Sold By Amazon är en Chrome-tillägg utvecklad av phunglovescats, och dess huvudfunktion är "This extension reloads any Amazon search results with only products sold and shipped by Amazon.".

Tilläggsskärmbilder

screenshot

Ladda ner Sold By Amazon-förlängningens CRX-fil

Ladda ner Sold By Amazon-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn Sold By Amazon Sold By Amazon
ID pjckdfjhkhlnohkhbkolbmpljgfcnmae
Officiell webbadress https://chromewebstore.google.com/detail/sold-by-amazon/pjckdfjhkhlnohkhbkolbmpljgfcnmae
Beskrivning This extension reloads any Amazon search results with only products sold and shipped by Amazon.
Filstorlek 11.5 KB
Antal Installationer 234
Aktuell Version 1.0
Senast Uppdaterad 2023-07-05
Publiceringsdatum 2023-07-04
Betyg 4.33/5 Totalt 3 Betyg
Utvecklare phunglovescats
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}