Reclaim the Amazon

Show photos of the Amazon when browsing to Amazon.com

Vad är Reclaim the Amazon?

Reclaim the Amazon är en Chrome-tillägg utvecklad av What matters, och dess huvudfunktion är "Show photos of the Amazon when browsing to Amazon.com".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Reclaim the Amazon-förlängningens CRX-fil

Ladda ner Reclaim the Amazon-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

                        Learn more about the Amazon forest, view gorgeous photos and shop less! We show you beautiful photos of the Amazon when browsing to Amazon.com (or it's international domains). You're always in control, and can set the time you want to spend on Amazon.com without seeing our photos.

Project by: Olya Irzak, Tilek Mamutov, Pasha Tsier, Witnesses of Climatology                    

Grundläggande Information om Tillägg

Namn Reclaim the Amazon Reclaim the Amazon
ID homocecfbbmmljacijppegoeipleelci
Officiell webbadress https://chrome.google.com/webstore/detail/homocecfbbmmljacijppegoeipleelci
Beskrivning Show photos of the Amazon when browsing to Amazon.com
Filstorlek 86.27 KB
Antal Installationer 31
Aktuell Version 1.2
Senast Uppdaterad 2019-03-21
Publiceringsdatum 2019-03-21
Betyg 5.00/5 Totalt 5 Betyg
Utvecklare What matters
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reclaim the Amazon",
    "version": "1.2",
    "description": "Show photos of the Amazon when browsing to Amazon.com",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "tree_16.png",
        "48": "tree_48.png",
        "128": "tree_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.amazon.com\/*",
                "https:\/\/smile.amazon.com\/*",
                "https:\/\/www.amazon.ca\/*",
                "https:\/\/www.amazon.com.au\/*",
                "https:\/\/www.amazon.com.br\/*",
                "https:\/\/www.amazon.in\/*",
                "https:\/\/www.amazon.fr\/*",
                "https:\/\/www.amazon.de\/*",
                "https:\/\/smile.amazon.de\/*",
                "https:\/\/www.amazon.nl\/*",
                "https:\/\/www.amazon.co.uk\/*",
                "https:\/\/smile.amazon.co.uk\/*"
            ],
            "run_at": "document_start",
            "js": [
                "contentscript.js"
            ],
            "css": [
                "amazon.css"
            ]
        }
    ],
    "manifest_version": 2,
    "web_accessible_resources": [
        "images\/*.png"
    ]
}