Amazon Prime Filter
Automatically filters for Prime Eligible items.
什么是Amazon Prime Filter?
Amazon Prime Filter是由liviequinns开发的Chrome扩展程序,该扩展的主要功能是“Automatically filters for Prime Eligible items.”。
扩展截图
下载Amazon Prime Filter扩展crx文件
下载Amazon Prime Filter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Automatically selects "Prime" checkbox where available to filter for Prime Eligible products only. Works for Amazon US and Canada. 扩展基本信息
| 名称 | |
| ID | bjiabhljmbamaakkggminoeemnkngdga |
| 官方URL | https://chromewebstore.google.com/detail/amazon-prime-filter/bjiabhljmbamaakkggminoeemnkngdga |
| 简介 | Automatically filters for Prime Eligible items. |
| 文件大小 | 16.31 KB |
| 安装次数 | 53 |
| 当前版本 | 0.0.2 |
| 更新时间 | 2021-09-08 |
| 上架时间 | 2021-08-14 |
| 开发者 | liviequinns |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Amazon Prime Filter",
"version": "0.0.2",
"manifest_version": 2,
"description": "Automatically filters for Prime Eligible items.",
"icons": {
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"src\/bg\/background.js"
],
"persistent": false
},
"options_page": "src\/options\/index.html",
"page_action": {
"default_icon": "icons\/icon48.png"
},
"permissions": [
"https:\/\/*.amazon.ca\/*",
"https:\/\/*.amazon.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/*.amazon.ca\/*",
"https:\/\/*.amazon.com\/*"
],
"js": [
"src\/inject\/inject.js"
]
}
]
} | |