Tile Enhancer

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

Tile Enhancer란 무엇입니까?

Tile Enhancer은(는) ppseprus에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An unofficial tool that allows the user to enhance the satellite images on the GlobalXplorer° website"입니다.

확장 프로그램 스크린샷

screenshot

Tile Enhancer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}