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.”。

擴展截圖

screenshot
screenshot
screenshot

下載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 TipMap
ID bkkihmlfkglciicldmilojfceepeebbp
官方網址 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
電子郵箱 [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"
    }
}