TipMap
Quickly locate and display location or address from selected text in any webpage.
TipMapとは何ですか?
TipMapはhttps://sainsmograf.comによって開発されたChromeの拡張機能で、その主な機能は「Quickly locate and display location or address from selected text in any webpage.」です。
拡張機能のスクリーンショット
TipMap拡張機能のCRXファイルをダウンロード
TipMap拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | TipMap |
ID | bkkihmlfkglciicldmilojfceepeebbp |
公式URL | https://chromewebstore.google.com/detail/tipmap/bkkihmlfkglciicldmilojfceepeebbp |
説明 | Quickly locate and display location or address from selected text in any webpage. |
ファイルサイズ | 169 KB |
インストール数 | 57 |
現在のバージョン | 0.1.3 |
最終更新日 | 2016-04-07 |
公開日 | 2016-04-07 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | https://sainsmograf.com |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | http://www.sainsmograf.com/ |
対応言語 | 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" } } |