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”。
扩展截图
下载Tile Enhancer扩展crx文件
下载Tile Enhancer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
"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 |
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" ] } |