Tile Enhancer

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

O que é Tile Enhancer?

Tile Enhancer é uma extensão do Chrome desenvolvida por ppseprus, e sua principal característica é "An unofficial tool that allows the user to enhance the satellite images on the GlobalXplorer° website".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Tile Enhancer

Baixe arquivos de extensão Tile Enhancer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        "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                    

Informações Básicas da Extensão

Nome Tile Enhancer Tile Enhancer
ID ajgnkhkpjjmbhpdaacbhfdnhpkponcob
URL Oficial https://chromewebstore.google.com/detail/tile-enhancer/ajgnkhkpjjmbhpdaacbhfdnhpkponcob
Descrição An unofficial tool that allows the user to enhance the satellite images on the GlobalXplorer° website
Tamanho do Arquivo 6.58 KB
Contagem de Instalações 11
Versão Atual 0.2.0
Última Atualização 2017-02-11
Data de Publicação 2017-02-11
Desenvolvedor ppseprus
Tipo de Pagamento free
Site da Extensão https://github.com/ppseprus/globalxplorer-tile-enhancer
Idiomas Suportados 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"
    ]
}