HigherContrastForGoogleMaps
Increase contrast in Google Maps
HigherContrastForGoogleMapsคืออะไร?
HigherContrastForGoogleMaps เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ovikholt และคุณลักษณะหลักของมันคือ "Increase contrast in Google Maps"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย HigherContrastForGoogleMaps
ดาวน์โหลดไฟล์ส่วนขยาย HigherContrastForGoogleMaps ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
PLEASE SKIM THROUGH THIS TEXT FIRST: ** Right-click (Mac: control-click) the Earth/Satellite button to toggle! ** This extension increases the contrast on Google Maps so it's easier to see buildings and roads. It works for both traditional Google Maps at maps.google.com and the new one at www.google.com/maps. Toggling to Earth/Satellite mode turns off the extra contrast. By right clicking the Earth/Satellite button you can toggle the extra contrast independently. The extra contrast is implemented using a CSS -webkit-filter and is determined experimentally. There probably exists better filter than this one, and the filter will be improved in the future. Please feel free to send suggestions. Bugs: * Entering or leaving street view does not automatically toggle the contrast, yet. * Labels become a bit blocky. * The extension asks for permission to *all pages* because I didn't have time to enumerate all top-level domains for Google Maps such as www.google.de/maps and www.google.co.jp/maps (there are lots).
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | HigherContrastForGoogleMaps |
ID | bagkggccafdeflnfacbpemniahacnkfp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/highercontrastforgooglema/bagkggccafdeflnfacbpemniahacnkfp |
คำอธิบาย | Increase contrast in Google Maps |
ขนาดไฟล์ | 158 KB |
จำนวนการติดตั้ง | 8,368 |
เวอร์ชันปัจจุบัน | 1.0.2 |
อัปเดตครั้งล่าสุด | 2013-09-26 |
วันที่เผยแพร่ | 2013-09-25 |
คะแนน | 2.78/5 รวมทั้งหมด 32 คะแนน |
ผู้พัฒนา | ovikholt |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "HigherContrastForGoogleMaps", "description": "Increase contrast in Google Maps", "version": "1.0.2", "permissions": [ "*:\/\/*\/*" ], "background": { "scripts": [] }, "browser_action": { "default_icon": { "128": "us128.png", "64": "icon64.png", "48": "icon48.png", "32": "icon32.png" }, "default_popup": "popup.html", "default_title": "HigherContrastForGoogleMaps" }, "content_scripts": [ { "exclude_globs": [], "include_globs": [ "*" ], "js": [ "HigherContrastForGoogleMaps.user.js" ], "matches": [ "*:\/\/*\/*" ], "run_at": "document_end" } ], "converted_from_user_script": false, "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'; style-src 'self' 'unsafe-inline'", "icons": { "128": "us128.png", "64": "icon64.png", "48": "icon48.png", "32": "icon32.png" } } |