Tile Enhancer

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

Tile Enhancer क्या है?

Tile Enhancer ppseprus द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An unofficial tool that allows the user to enhance the satellite images on the GlobalXplorer° website"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Tile Enhancer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        "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                    

एक्सटेंशन की मूल जानकारी

नाम Tile Enhancer Tile Enhancer
ID ajgnkhkpjjmbhpdaacbhfdnhpkponcob
आधिकारिक URL https://chromewebstore.google.com/detail/tile-enhancer/ajgnkhkpjjmbhpdaacbhfdnhpkponcob
विवरण An unofficial tool that allows the user to enhance the satellite images on the GlobalXplorer° website
फ़ाइल का आकार 6.58 KB
स्थापना संख्या 11
वर्तमान संस्करण 0.2.0
अंतिम अपडेट 2017-02-11
प्रकाशन तिथि 2017-02-11
डेवलपर ppseprus
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/ppseprus/globalxplorer-tile-enhancer
समर्थित भाषाएँ 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"
    ]
}