EasyMap
Easily get directions to any address on a page!
Wat is EasyMap?
EasyMap is een Chrome-extensie ontwikkeld door jchernus, en de belangrijkste functie is "Easily get directions to any address on a page!".
Extensie Screenshots
Download het CRX-bestand van de extensie EasyMap
Download EasyMap-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | gdhkngibdllfjhciaobdcmeabafencdm |
Officiële URL | https://chrome.google.com/webstore/detail/easymap/gdhkngibdllfjhciaobdcmeabafencdm |
Beschrijving | Easily get directions to any address on a page! |
Bestandsgrootte | 98.3 KB |
Aantal Installaties | 29 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2014-09-22 |
Publicatiedatum | 2014-09-22 |
Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
Ontwikkelaar | jchernus |
Betalingswijze | free |
Ondersteunde Talen | 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" } |