Amazon Alternatives

Find a book or something else in Amazon, et fetch it elswehere!

Cos'è Amazon Alternatives?

Amazon Alternatives è un'estensione di Chrome sviluppata da Adrian Tombu, e la sua funzione principale è "Find a book or something else in Amazon, et fetch it elswehere!".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Amazon Alternatives

Scarica i file di estensione Amazon Alternatives in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This is a browser extension to help you buy stuff you found in Amazon, but in other stores (like a real-life bookstore or an online Amazon alternative).

Additionaly, the addon will show you a prompt everytime you want to buy on Amazon instead of one of his alternatives.

Features:
- Shows a list of alternative stores
- Multi-langage
- Multi-country
- Typescript-based, no external library
- Universal compatibility for all major browsers (except Safari) in a single codebase : Chrome, Firefox, Edge, Opera, Brave and Vivaldi                    

Informazioni di Base sull'Estensione

Nome Amazon Alternatives Amazon Alternatives
ID hcjifkchlbbpcpmdbimipoidnljabnai
URL Ufficiale https://chromewebstore.google.com/detail/amazon-alternatives/hcjifkchlbbpcpmdbimipoidnljabnai
Descrizione Find a book or something else in Amazon, et fetch it elswehere!
Dimensione del File 28.44 KB
Conteggio Installazioni 805
Versione Corrente 1.12.10
Ultimo Aggiornamento 2024-01-24
Data di Pubblicazione 2020-06-13
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Adrian Tombu
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/amazon-alternatives/extension
URL della Pagina di Aiuto https://github.com/amazon-alternatives/extension/issues
URL della Pagina della Politica sulla Privacy https://github.com/amazon-alternatives/extension/blob/main/PRIVACY-POLICY.md
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Amazon Alternatives",
    "short_name": "amazon_alts",
    "description": "Find a book or something else in Amazon, et fetch it elswehere!",
    "homepage_url": "https:\/\/github.com\/amazon-alternatives\/extension",
    "version": "1.12.10",
    "author": "Adrian Tombu ",
    "icons": {
        "48": "assets\/icon-48.png",
        "96": "assets\/icon-96.png"
    },
    "action": {
        "default_icon": {
            "16": "assets\/icon-16.png",
            "32": "assets\/icon-32.png",
            "64": "assets\/icon-64.png"
        },
        "default_title": "Amazon Alternatives",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.amazon.fr\/*",
                "*:\/\/*.amazon.com\/*",
                "*:\/\/*.amazon.co.uk\/*",
                "*:\/\/*.amazon.com.mx\/*",
                "*:\/\/*.amazon.co.jp\/*",
                "*:\/\/*.amazon.it\/*",
                "*:\/\/*.amazon.in\/*",
                "*:\/\/*.amazon.es\/*",
                "*:\/\/*.amazon.cn\/*",
                "*:\/\/*.amazon.ca\/*",
                "*:\/\/*.amazon.com.br\/*",
                "*:\/\/*.amazon.de\/*",
                "*:\/\/*.amazon.com.au\/*"
            ],
            "js": [
                "app.js"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "{69085149-a34e-4f46-b6ef-ff4ea64bce4c}"
        }
    }
}