Amazon Prime Filter

Automatically filters for Prime Eligible items.

What is Amazon Prime Filter?

Amazon Prime Filter is a Chrome extension developed by liviequinns, and its main feature is "Automatically filters for Prime Eligible items.".

Extension Screenshots

screenshot
screenshot

Download Amazon Prime Filter Extension CRX File

Download Amazon Prime Filter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Automatically selects "Prime" checkbox where available to filter for Prime Eligible products only. Works for Amazon US and Canada.                    

Extension Basic Information

Name Amazon Prime Filter Amazon Prime Filter
ID bjiabhljmbamaakkggminoeemnkngdga
Official URL https://chromewebstore.google.com/detail/amazon-prime-filter/bjiabhljmbamaakkggminoeemnkngdga
Description Automatically filters for Prime Eligible items.
File Size 16.31 KB
Installation Count 53
Current Version 0.0.2
Last Updated 2021-09-08
Publish Date 2021-08-14
Developer liviequinns
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}