Sold By Amazon
This extension reloads any Amazon search results with only products sold and shipped by Amazon.
什么是Sold By Amazon?
Sold By Amazon是由phunglovescats开发的Chrome扩展程序,该扩展的主要功能是“This extension reloads any Amazon search results with only products sold and shipped by Amazon.”。
扩展截图
下载Sold By Amazon扩展crx文件
下载Sold By Amazon扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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!
扩展基本信息
名称 | Sold By Amazon |
ID | pjckdfjhkhlnohkhbkolbmpljgfcnmae |
官方URL | https://chromewebstore.google.com/detail/sold-by-amazon/pjckdfjhkhlnohkhbkolbmpljgfcnmae |
简介 | This extension reloads any Amazon search results with only products sold and shipped by Amazon. |
文件大小 | 11.5 KB |
安装次数 | 234 |
当前版本 | 1.0 |
更新时间 | 2023-07-05 |
上架时间 | 2023-07-04 |
评分 | 4.33/5 共3次评分 |
开发者 | phunglovescats |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" ] } ] } |