Amazon Alternatives

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

ما هو Amazon Alternatives؟

Amazon Alternatives هو إضافة Chrome تم تطويرها بواسطة Adrian Tombu، والميزة الرئيسية لها هي "Find a book or something else in Amazon, et fetch it elswehere!".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Amazon Alternatives

قم بتنزيل ملفات الامتداد Amazon Alternatives بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم Amazon Alternatives Amazon Alternatives
ID hcjifkchlbbpcpmdbimipoidnljabnai
عنوان URL الرسمي https://chromewebstore.google.com/detail/amazon-alternatives/hcjifkchlbbpcpmdbimipoidnljabnai
الوصف Find a book or something else in Amazon, et fetch it elswehere!
حجم الملف 28.44 KB
عدد التثبيتات 805
النسخة الحالية 1.12.10
آخر تحديث 2024-01-24
تاريخ النشر 2020-06-13
تقييم 5.00/5 مجموع تقييمات 1
المطور Adrian Tombu
البريد الإلكتروني adrian@otso.fr
نوع الدفع free
موقع الإضافة https://github.com/amazon-alternatives/extension
عنوان صفحة المساعدة https://github.com/amazon-alternatives/extension/issues
عنوان صفحة سياسة الخصوصية https://github.com/amazon-alternatives/extension/blob/main/PRIVACY-POLICY.md
اللغات المدعومة 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}"
        }
    }
}