Amazon Alternatives

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

Amazon Alternatives란 무엇입니까?

Amazon Alternatives은(는) Adrian Tombu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Find a book or something else in Amazon, et fetch it elswehere!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Amazon Alternatives 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/amazon-alternatives/extension
도움말 페이지 URL https://github.com/amazon-alternatives/extension/issues
개인정보 보호 정책 페이지 URL 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}"
        }
    }
}