Amazon Alternatives

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

What is Amazon Alternatives?

Amazon Alternatives is a Chrome extension developed by Adrian Tombu, and its main feature is "Find a book or something else in Amazon, et fetch it elswehere!".

Extension Screenshots

screenshot
screenshot

Download Amazon Alternatives Extension CRX File

Download Amazon Alternatives 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

                        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                    

Extension Basic Information

Name Amazon Alternatives Amazon Alternatives
ID hcjifkchlbbpcpmdbimipoidnljabnai
Official URL https://chromewebstore.google.com/detail/amazon-alternatives/hcjifkchlbbpcpmdbimipoidnljabnai
Description Find a book or something else in Amazon, et fetch it elswehere!
File Size 28.44 KB
Installation Count 805
Current Version 1.12.10
Last Updated 2024-01-24
Publish Date 2020-06-13
Rating 5.00/5 Total 1 Ratings
Developer Adrian Tombu
Email [email protected]
Payment Type free
Extension Website https://github.com/amazon-alternatives/extension
Help Page URL https://github.com/amazon-alternatives/extension/issues
Privacy Policy Page URL https://github.com/amazon-alternatives/extension/blob/main/PRIVACY-POLICY.md
Supported Languages 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}"
        }
    }
}