Reclaim the Amazon

Show photos of the Amazon when browsing to Amazon.com

Was ist Reclaim the Amazon?

Reclaim the Amazon ist eine Chrome-Erweiterung, die von What matters entwickelt wurde, und ihr Hauptmerkmal ist "Show photos of the Amazon when browsing to Amazon.com".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Reclaim the Amazon-Erweiterungs-CRX-Datei herunterladen

Laden Sie Reclaim the Amazon-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Reclaim the Amazon Reclaim the Amazon
ID homocecfbbmmljacijppegoeipleelci
Offizielle URL https://chrome.google.com/webstore/detail/homocecfbbmmljacijppegoeipleelci
Beschreibung Show photos of the Amazon when browsing to Amazon.com
Dateigröße 86.27 KB
Installationsanzahl 31
Aktuelle Version 1.2
Letztes Update 2019-03-21
Veröffentlichungsdatum 2019-03-21
Bewertung 5.00/5 Insgesamt 5 Bewertungen
Entwickler What matters
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}