Sold By Amazon
This extension reloads any Amazon search results with only products sold and shipped by Amazon.
Was ist Sold By Amazon?
Sold By Amazon ist eine Chrome-Erweiterung, die von phunglovescats entwickelt wurde, und ihr Hauptmerkmal ist "This extension reloads any Amazon search results with only products sold and shipped by Amazon.".
Erweiterungsscreenshots
Sold By Amazon-Erweiterungs-CRX-Datei herunterladen
Laden Sie Sold By Amazon-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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!
Grundlegende Informationen zur Erweiterung
Name | Sold By Amazon |
ID | pjckdfjhkhlnohkhbkolbmpljgfcnmae |
Offizielle URL | https://chromewebstore.google.com/detail/sold-by-amazon/pjckdfjhkhlnohkhbkolbmpljgfcnmae |
Beschreibung | This extension reloads any Amazon search results with only products sold and shipped by Amazon. |
Dateigröße | 11.5 KB |
Installationsanzahl | 234 |
Aktuelle Version | 1.0 |
Letztes Update | 2023-07-05 |
Veröffentlichungsdatum | 2023-07-04 |
Bewertung | 4.33/5 Insgesamt 3 Bewertungen |
Entwickler | phunglovescats |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |