Amazon Prime Filter

Automatically filters for Prime Eligible items.

Amazon Prime Filterคืออะไร?

Amazon Prime Filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย liviequinns และคุณลักษณะหลักของมันคือ "Automatically filters for Prime Eligible items."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Amazon Prime Filter

ดาวน์โหลดไฟล์ส่วนขยาย 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Amazon Prime Filter Amazon Prime Filter
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"
            ]
        }
    ]
}