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 |
官方網址 | 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" ] } ] } |