Amazon SMILE!

Works with amazon.[de|com|co.uk]. Redirects you to smile.amazon!

Vad är Amazon SMILE!?

Amazon SMILE! är en Chrome-tillägg utvecklad av max.schopfer, och dess huvudfunktion är "Works with amazon.[de|com|co.uk]. Redirects you to smile.amazon!".

Tilläggsskärmbilder

screenshot

Ladda ner Amazon SMILE!-förlängningens CRX-fil

Ladda ner Amazon SMILE!-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Redirects you to smile.amazon[.com|.de|.co.uk]. For now on, Amazon always donates 0.5% of your order value to charities of your choice.

Important: To prevent the redirect issue, please log in to https://smile.amazon.com




Icons made by https://www.flaticon.com/authors/icomoon
Is licensed by http://creativecommons.org/licenses/by/3.0/                    

Grundläggande Information om Tillägg

Namn Amazon SMILE! Amazon SMILE!
ID fkpgijfghdipchoficpinkglkgdfligm
Officiell webbadress https://chromewebstore.google.com/detail/amazon-smile/fkpgijfghdipchoficpinkglkgdfligm
Beskrivning Works with amazon.[de|com|co.uk]. Redirects you to smile.amazon!
Filstorlek 5.64 KB
Antal Installationer 15
Aktuell Version 1.3.2
Senast Uppdaterad 2019-03-08
Publiceringsdatum 2019-03-08
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare max.schopfer
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Amazon SMILE!",
    "version": "1.3.2",
    "author": "Max Schopfer",
    "description": "Works with amazon.[de|com|co.uk]. Redirects you to smile.amazon!",
    "icons": {
        "128": "wink.png"
    },
    "browser_action": {
        "default_icon": "wink.png"
    },
    "content_scripts": [
        {
            "exclude_matches": [
                "*:\/\/smile.amazon.com\/*",
                "*:\/\/smile.amazon.de\/*",
                "*:\/\/smile.amazon.co.uk\/*"
            ],
            "matches": [
                "*:\/\/www.amazon.com\/*",
                "*:\/\/www.amazon.de\/*",
                "*:\/\/www.amazon.co.uk\/*"
            ],
            "run_at": "document_start",
            "js": [
                "smile.js"
            ]
        }
    ]
}