Tile Enhancer

An unofficial tool that allows the user to enhance the satellite images on the GlobalXplorer° website

Cos'è Tile Enhancer?

Tile Enhancer è un'estensione di Chrome sviluppata da ppseprus, e la sua funzione principale è "An unofficial tool that allows the user to enhance the satellite images on the GlobalXplorer° website".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Tile Enhancer

Scarica i file di estensione Tile Enhancer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        "GlobalXplorer° is an online platform that uses the power of the crowd to analyze the incredible wealth of satellite images currently available to archaeologists." — https://www.globalxplorer.org/about

This Chrome Extension is an unofficial tool that allows the user to enhance the satellite images the website serves to the user.

While inside the highlighted area, by moving the mouse away from the center of the image horizontally, the user can either increase or decrease the brightness of the tile. Doing the same thing vertically will give control over the contrast.
Moving the mouse outside the highlighted area will set everything back to default.

For more information, please visit the following link:
https://github.com/ppseprus/globalxplorer-tile-enhancer                    

Informazioni di Base sull'Estensione

Nome Tile Enhancer Tile Enhancer
ID ajgnkhkpjjmbhpdaacbhfdnhpkponcob
URL Ufficiale https://chromewebstore.google.com/detail/tile-enhancer/ajgnkhkpjjmbhpdaacbhfdnhpkponcob
Descrizione An unofficial tool that allows the user to enhance the satellite images on the GlobalXplorer° website
Dimensione del File 6.58 KB
Conteggio Installazioni 11
Versione Corrente 0.2.0
Ultimo Aggiornamento 2017-02-11
Data di Pubblicazione 2017-02-11
Sviluppatore ppseprus
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/ppseprus/globalxplorer-tile-enhancer
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tile Enhancer",
    "version": "0.2.0",
    "description": "An unofficial tool that allows the user to enhance the satellite images on the GlobalXplorer\u00b0 website",
    "author": "ppseprus",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.globalxplorer.org\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "enhance.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "webNavigation",
        "tabs"
    ]
}