TipMap
Quickly locate and display location or address from selected text in any webpage.
Qu'est-ce que TipMap ?
TipMap est une extension Chrome développée par https://sainsmograf.com, et sa fonction principale est "Quickly locate and display location or address from selected text in any webpage.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension TipMap
Téléchargez les fichiers d'extension TipMap au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Highlight a location or address, right click and select "locate selected address" to open a map containing the location. Alternatively, click the TipMap icon on top of your browser and search the location you're looking for. TipMap is powered by Mapbox and Google Map API.
Informations de Base sur l'Extension
Nom | TipMap |
ID | bkkihmlfkglciicldmilojfceepeebbp |
URL Officiel | https://chromewebstore.google.com/detail/tipmap/bkkihmlfkglciicldmilojfceepeebbp |
Description | Quickly locate and display location or address from selected text in any webpage. |
Taille du Fichier | 169 KB |
Nombre d'Installations | 57 |
Version Actuelle | 0.1.3 |
Dernière Mise à Jour | 2016-04-07 |
Date de Publication | 2016-04-07 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | https://sainsmograf.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://www.sainsmograf.com/ |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "TipMap", "author": "Arif Widi Nugroho", "short_name": "TipMap", "description": "Quickly locate and display location or address from selected text in any webpage.", "version": "0.1.3", "browser_action": { "default_title": "TipMap", "default_icon": "img\/icon-64.png", "default_popup": "popup.html" }, "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/lib\/jquery.min.js", "js\/lib\/bluebird.js", "js\/lib\/underscore.min.js", "js\/lib\/backbone.min.js", "js\/content.js" ] } ], "web_accessible_resources": [ "map.html", "test.html", "css\/*", "js\/*", "img\/*" ], "permissions": [ "activeTab", "contextMenus", "geolocation" ], "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/*.mapbox.com https:\/\/*.googleapis.com; object-src 'self'", "icons": { "16": "img\/icon-16.png", "48": "img\/icon-48.png", "64": "img\/icon-64.png", "128": "img\/icon-128.png", "256": "img\/icon-256.png" } } |