Sold By Amazon

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

What is Sold By Amazon?

Sold By Amazon is a Chrome extension developed by phunglovescats, and its main feature is "This extension reloads any Amazon search results with only products sold and shipped by Amazon.".

Extension Screenshots

screenshot

Download Sold By Amazon Extension CRX File

Download Sold By Amazon extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name Sold By Amazon Sold By Amazon
ID pjckdfjhkhlnohkhbkolbmpljgfcnmae
Official URL https://chromewebstore.google.com/detail/sold-by-amazon/pjckdfjhkhlnohkhbkolbmpljgfcnmae
Description This extension reloads any Amazon search results with only products sold and shipped by Amazon.
File Size 11.5 KB
Installation Count 234
Current Version 1.0
Last Updated 2023-07-05
Publish Date 2023-07-04
Rating 4.33/5 Total 3 Ratings
Developer phunglovescats
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}