EasyMap
Easily get directions to any address on a page!
Apa itu EasyMap?
EasyMap adalah ekstensi Chrome yang dikembangkan oleh jchernus, dan fitur utamanya adalah "Easily get directions to any address on a page!".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi EasyMap
Unduh file ekstensi EasyMap dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Simply highlight the address (for example, on Craigslist), right click, and choose where you want your directions to be from: your current location or a saved address. Developed by J Chernushevich, R Shah, B Komer, M Unger for a Facebook Hackathon.
Informasi Dasar Ekstensi
Nama | |
ID | gdhkngibdllfjhciaobdcmeabafencdm |
URL Resmi | https://chrome.google.com/webstore/detail/easymap/gdhkngibdllfjhciaobdcmeabafencdm |
Deskripsi | Easily get directions to any address on a page! |
Ukuran File | 98.3 KB |
Jumlah Instalasi | 29 |
Versi Saat Ini | 1.0.0 |
Terakhir Diperbarui | 2014-09-22 |
Tanggal Publikasi | 2014-09-22 |
Penilaian | 5.00/5 Total 3 Penilaian |
Pengembang | jchernus |
Tipe Pembayaran | free |
Bahasa yang Didukung | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "EasyMap", "version": "1.0.0", "manifest_version": 2, "description": "Easily get directions to any address on a page!", "icons": { "128": "icon.png" }, "background": { "scripts": [ "popup.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "popup.js" ], "run_at": "document_end" } ], "permissions": [ "tabs", "contextMenus", "geolocation", "https:\/\/maps.google.com\/*", "https:\/\/maps.googleapis.com\/*" ], "browser_action": { "default_icon": "menuIcon.png", "default_popup": "popup.html" }, "content_security_policy": "default-src 'none'; style-src 'self'; script-src 'self'; connect-src https:\/\/maps.googleapis.com; img-src https:\/\/maps.google.com" } |