Tile Enhancer

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

ما هو Tile Enhancer؟

Tile Enhancer هو إضافة Chrome تم تطويرها بواسطة ppseprus، والميزة الرئيسية لها هي "An unofficial tool that allows the user to enhance the satellite images on the GlobalXplorer° website".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Tile Enhancer

قم بتنزيل ملفات الامتداد Tile Enhancer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    ]
}