EasyMap

Easily get directions to any address on a page!

EasyMap là gì?

EasyMap là một tiện ích mở rộng Chrome được phát triển bởi jchernus, và tính năng chính của nó là "Easily get directions to any address on a page!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng EasyMap

Tải xuống các tệp mở rộng EasyMap dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên EasyMap EasyMap
ID gdhkngibdllfjhciaobdcmeabafencdm
URL Chính Thức https://chrome.google.com/webstore/detail/easymap/gdhkngibdllfjhciaobdcmeabafencdm
Mô tả Easily get directions to any address on a page!
Kích Thước Tệp 98.3 KB
Số Lần Cài Đặt 29
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2014-09-22
Ngày Phát Hành 2014-09-22
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển jchernus
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}