TipMap
Quickly locate and display location or address from selected text in any webpage.
What is TipMap?
TipMap is a Chrome extension developed by https://sainsmograf.com, and its main feature is "Quickly locate and display location or address from selected text in any webpage.".
Extension Screenshots
Download TipMap Extension CRX File
Download TipMap extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | TipMap |
ID | bkkihmlfkglciicldmilojfceepeebbp |
Official URL | https://chromewebstore.google.com/detail/tipmap/bkkihmlfkglciicldmilojfceepeebbp |
Description | Quickly locate and display location or address from selected text in any webpage. |
File Size | 169 KB |
Installation Count | 57 |
Current Version | 0.1.3 |
Last Updated | 2016-04-07 |
Publish Date | 2016-04-07 |
Rating | 5.00/5 Total 1 Ratings |
Developer | https://sainsmograf.com |
[email protected] | |
Payment Type | free |
Extension Website | http://www.sainsmograf.com/ |
Supported Languages | 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" } } |