Amazon Filter

An extension that sorts Amazon search results by fastest estimated delivery date, stock availability, and unsponsored posts.

Τι είναι το Amazon Filter;

Το Amazon Filter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Manosai, και η κύρια λειτουργία του είναι "An extension that sorts Amazon search results by fastest estimated delivery date, stock availability, and unsponsored posts.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Amazon Filter

Λήψη αρχείων επέκτασης Amazon Filter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Amazon Filter helps you sort Amazon search results by the fastest delivery time, item availability, and unsponsored items. 

Finding exactly what you want to order from Amazon can be a pain if you need to think about delivery times, availability, and relevance. With Amazon Filter, you don’t need to fumble around with Amazon’s default options while looking at results.

Just search as you normally would, and select a filter option on the extension to sort your results. You don’t even need to reload the page. 

Amazon Filter is not endorsed by, directly affiliated with, maintained, authorized, or sponsored by Amazon.com, Inc. All product and company names are the registered trademarks of their original owners. The use of any trade name or trademark is for identification and reference purposes only and does not imply any association with the trademark holder of their product brand.

(May 2020): First release with support for 3 filters. We may consider adding support for precise estimated delivery dates and default preferences in future release.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Amazon Filter Amazon Filter
ID pfbdkdnlimiidmpnmknkfhbgpbiodohi
Επίσημο URL https://chromewebstore.google.com/detail/amazon-filter/pfbdkdnlimiidmpnmknkfhbgpbiodohi
Περιγραφή An extension that sorts Amazon search results by fastest estimated delivery date, stock availability, and unsponsored posts.
Μέγεθος Αρχείου 67.18 KB
Αριθμός Εγκαταστάσεων 1,674
Τρέχουσα Έκδοση 1.2
Τελευταία Ενημέρωση 2020-06-18
Ημερομηνία Δημοσίευσης 2020-06-17
Αξιολόγηση 2.22/5 Συνολικά 9 Αξιολογήσεις
Προγραμματιστής Manosai
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Amazon Filter",
    "version": "1.2",
    "description": "An extension that sorts Amazon search results by fastest estimated delivery date, stock availability, and unsponsored posts.",
    "permissions": [
        "declarativeContent",
        "tabs",
        "https:\/\/www.amazon.com\/",
        "http:\/\/www.amazon.com\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_popup": "backup_popup.html",
        "default_icon": {
            "16": "images\/bw_get_started16.png",
            "32": "images\/get_started32.png",
            "48": "images\/get_started48.png",
            "128": "images\/get_started128.png"
        }
    },
    "icons": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.amazon.com\/",
                "https:\/\/www.amazon.com\/*"
            ],
            "js": [
                "jquery.js",
                "main.js"
            ],
            "run_at": "document_start"
        }
    ],
    "manifest_version": 2
}