Amazon Smile Redirect

This Extension will automatically redirect you to the corresponding AmazonSmile page from Amazon.com.

Amazon Smile Redirect란 무엇입니까?

Amazon Smile Redirect은(는) https://amazonsmileredirect.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This Extension will automatically redirect you to the corresponding AmazonSmile page from Amazon.com."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Help your favorite non-profit by purchasing your Amazon items through AmazonSmile.

Overview:
This Extension will automatically redirect you to the corresponding AmazonSmile page, so you will never need to remember to go to AmazonSmile first. In order for your non-profit to benefit from your purchase, you must complete your purchase through AmazonSmile.

Supported Sites:
amazon.com
amazon.co.uk
amazon.de

Open Source:
The code for this extension is open source and can be viewed on GitHub.
https://github.com/webdevnerdstuff/amazon-smile-redirect

Legal Information:
AmazonSmile and the AmazonSmile logo are trademarks of Amazon.com, Inc. or its affiliates.
The extension was not created or endorsed by Amazon.

© 2020 Amazon Smile Redirect. All Rights Reserved.                    

확장 프로그램 기본 정보

이름 Amazon Smile Redirect Amazon Smile Redirect
ID ejglonclnjogoiegggjjcpapffbnangg
공식 URL https://chromewebstore.google.com/detail/amazon-smile-redirect/ejglonclnjogoiegggjjcpapffbnangg
설명 This Extension will automatically redirect you to the corresponding AmazonSmile page from Amazon.com.
파일 크기 116 KB
설치 횟수 10,000
현재 버전 4.0.0
최근 업데이트 2023-05-13
출시 날짜 2020-06-16
평점 4.62/5 총 60 개의 평점
개발자 https://amazonsmileredirect.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://amazonsmileredirect.com
도움말 페이지 URL https://github.com/webdevnerdstuff/amazon-smile-redirect/issues
지원되는 언어 id,ms,de,en,fil,fr,sw,nl,no,vi,tr,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,hi,th,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Amazon Smile Redirect",
    "short_name": "ASR",
    "description": "__MSG_appDesc__",
    "version": "4.0.0",
    "author": "__MSG_appAuthor",
    "homepage_url": "https:\/\/github.com\/webdevnerdstuff\/amazon-smile-redirect",
    "icons": {
        "16": "assets\/images\/icon16.png",
        "48": "assets\/images\/icon48.png",
        "128": "assets\/images\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "assets\/js\/background.min.js"
    },
    "host_permissions": [
        "*:\/\/www.amazon.com\/*",
        "*:\/\/www.amazon.co.uk\/*",
        "*:\/\/www.amazon.de\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.amazon.com\/*",
                "*:\/\/www.amazon.co.uk\/*",
                "*:\/\/www.amazon.de\/*"
            ],
            "exclude_globs": [
                "*business\/register*",
                "*ab_reg_biss_desktop*",
                "*amzn_business_inv_website*",
                "*b2b_reg_email_newcustomer*",
                "*watchparty*"
            ],
            "js": [
                "assets\/js\/content.min.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "action": {
        "default_icon": {
            "16": "assets\/images\/icon16.png",
            "48": "assets\/images\/icon48.png",
            "128": "assets\/images\/icon128.png"
        },
        "default_popup": "pages\/popup.html"
    },
    "default_locale": "en"
}