Sold By Amazon
This extension reloads any Amazon search results with only products sold and shipped by Amazon.
Hvad er Sold By Amazon?
Sold By Amazon er en Chrome-udvidelse udviklet af phunglovescats, og dens hovedfunktion er "This extension reloads any Amazon search results with only products sold and shipped by Amazon.".
Udvidelsesskærmbilleder
Download Sold By Amazon-udvidelses-CRX-fil
Download Sold By Amazon-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | Sold By Amazon |
ID | pjckdfjhkhlnohkhbkolbmpljgfcnmae |
Officiel URL | https://chromewebstore.google.com/detail/sold-by-amazon/pjckdfjhkhlnohkhbkolbmpljgfcnmae |
Beskrivelse | This extension reloads any Amazon search results with only products sold and shipped by Amazon. |
Filstørrelse | 11.5 KB |
Antal Installationer | 234 |
Nuværende Version | 1.0 |
Senest Opdateret | 2023-07-05 |
Udgivelsesdato | 2023-07-04 |
Bedømmelse | 4.33/5 Samlet 3 Bedømmelser |
Udvikler | phunglovescats |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } ] } |