Tile Enhancer

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

Co je Tile Enhancer?

Tile Enhancer je rozšíření Chrome vyvinuté ppseprus, a jeho hlavní funkcí je „An unofficial tool that allows the user to enhance the satellite images on the GlobalXplorer° website“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Tile Enhancer

Stáhněte si soubory rozšíření Tile Enhancer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        "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                    

Základní Informace o Rozšíření

Název Tile Enhancer Tile Enhancer
ID ajgnkhkpjjmbhpdaacbhfdnhpkponcob
Oficiální URL https://chromewebstore.google.com/detail/tile-enhancer/ajgnkhkpjjmbhpdaacbhfdnhpkponcob
Popis An unofficial tool that allows the user to enhance the satellite images on the GlobalXplorer° website
Velikost souboru 6.58 KB
Počet instalací 11
Aktuální Verze 0.2.0
Poslední Aktualizace 2017-02-11
Datum Vydání 2017-02-11
Vývojář ppseprus
Typ Platby free
Webové stránky Rozšíření https://github.com/ppseprus/globalxplorer-tile-enhancer
Podporované Jazyky 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"
    ]
}