SpendOver - Amazon Free Shipping Filter
Simple filter for Amazon products which are eligible for free international shipping
什么是SpendOver - Amazon Free Shipping Filter?
SpendOver - Amazon Free Shipping Filter是由amazonspendover开发的Chrome扩展程序,该扩展的主要功能是“Simple filter for Amazon products which are eligible for free international shipping”。
扩展截图
下载SpendOver - Amazon Free Shipping Filter扩展crx文件
下载SpendOver - Amazon Free Shipping Filter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Amazon doesn't allow to filter search results by this offer, this extension highlights the "eligible for free international shipping" sentence in green, and filters out listings which are not included in this offer. v1.2 - New Upgrades: - Added support for listings which are eligible for free shipping, and exceeding the spend over limit. - Added support for new Amazon web pages: New Releases, Movers & Shakers, Most Wished For, Gift Ideas. Supports the following Amazon web pages: - Amazon Search Results - Best Sellers Ranking - Today’s Deals Eligible shipping destinations, and their minimum dollar amount: - Hong Kong, spend over $49 USD - Israel , spend over $65 USD - Colombia , spend over $35 USD - Chile , spend over $49 USD - Taiwan , spend over $60 USD If you find the extension useful, buy me a coffee to support the extension and it's development :) More information: https://amazon.com/gp/help/customer/display.html?nodeId=GY48Z9B62JLTAQV2 Supported Destinations: https://www.amazon.com/b?node=23450861011
扩展基本信息
名称 | SpendOver - Amazon Free Shipping Filter |
ID | bcpbgclbfajeikpeglnfdclepjddgglp |
官方URL | https://chromewebstore.google.com/detail/spendover-amazon-free-shi/bcpbgclbfajeikpeglnfdclepjddgglp |
简介 | Simple filter for Amazon products which are eligible for free international shipping |
文件大小 | 2.46 MB |
安装次数 | 255 |
当前版本 | 1.2 |
更新时间 | 2021-09-14 |
上架时间 | 2021-08-26 |
评分 | 4.40/5 共5次评分 |
开发者 | amazonspendover |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.buymeacoffee.com/amazonspendover |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "SpendOver - Amazon Free Shipping Filter", "description": "Simple filter for Amazon products which are eligible for free international shipping", "version": "1.2", "icons": { "48": "icons\/icon.png" }, "permissions": [ "storage", "tabs" ], "browser_action": { "default_title": "SpendOver - Amazon Free Shipping Filter", "default_icon": "icons\/icon.png", "default_popup": "popup\/content.html" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.amazon.com\/*" ], "js": [ "jquery.min.js", "main.js" ], "css": [ "style.css" ] } ], "web_accessible_resources": [ "v.png", "loading1.gif", "info-loader.gif", "Ellipsis-1.1s-191px.gif" ] } |