WikiMaps

WikiMaps lets you select locations from text on the web, see them on a map, and view Wikipedia summaries for each one.

WikiMaps là gì?

WikiMaps là một tiện ích mở rộng Chrome được phát triển bởi AaronPlave, và tính năng chính của nó là "WikiMaps lets you select locations from text on the web, see them on a map, and view Wikipedia summaries for each one.".

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

screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng WikiMaps 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

                        WikiMaps works best with locations that can normally be found on Google Maps (and optionally on Wikipedia).

How to Use:

---Viewing the map--- 
• Click on the WikiMaps icon in the extensions icon toolbar in the upper right hand corner of the screen. Then click "Display Map"

---Adding a location to WikiMaps---
• Highlight some text you find on the web (for example "Empire State Building" or "Budapest, Hungary"). Then, right click on your highlighted text and select "Add to WikiMaps" in the menu that appears.
• Alternatively, in the map page (after you click "Display Map") you can enter locations to add in the "Add Locations" area.

---Removing locations---
• To remove a particular location, press the "x" button to the right of the location. To clear all locations, click the WikiMaps icon and then click "Clear List".

---Viewing Wikipedia Summary---
• To view the Wikipedia summary, click on an item in the map view and then click on "Summary" in the information window that appears above the map marker.


Other Features/Notes:
• Locations are saved locally and will be reloaded in the event you close your browser.
• You can sort the locations in the tables alphabetically by clicking on the "Location" label in the table.
• You can view a location in Google Maps by clicking "View in Google Maps" in the Wikipedia summary page of any location.
• If WikiMaps is unable to identify the location you attempted to add, the location will not be added.
• Not all locations will have complete or any Wikipedia data.

Future Improvements:
• Improve geocoding by pulling new coordinates from Wikipedia if data is found on Wikipedia for a location.
• Notifying the user whether an added location has been successfully added or was not successfully added.
• Better responsiveness to different window sizes. 
• Ability to calculate distances between two locations on the map
• Ability to select multiple locations and export them to a Google map to get directions.
• Ability to export/share data with other users.
• Sets of locations
• Starred locations

See this on Github: https://github.com/AaronPlave/WikiMaps                    

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

Tên WikiMaps WikiMaps
ID ibepgidgocafmabnegongehedkijfmac
URL Chính Thức https://chrome.google.com/webstore/detail/wikimaps/ibepgidgocafmabnegongehedkijfmac
Mô tả WikiMaps lets you select locations from text on the web, see them on a map, and view Wikipedia summaries for each one.
Kích Thước Tệp 434 KB
Số Lần Cài Đặt 317
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2014-07-02
Ngày Phát Hành 2014-07-02
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển AaronPlave
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/AaronPlave/WikiMaps
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WikiMaps",
    "version": "1.2",
    "description": "WikiMaps lets you select locations from text on the web, see them on a map, and view Wikipedia summaries for each one.",
    "icons": {
        "16": "img\/16icon.png",
        "48": "img\/48icon.png",
        "128": "img\/128icon.png"
    },
    "commands": {
        "add_selection": {
            "suggested_key": {
                "default": "Ctrl+Shift+Z",
                "mac": "Command+Shift+Z"
            },
            "description": "Add selection to WikiMaps"
        }
    },
    "background": {
        "page": "html\/background.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery.js",
                "js\/wikiMaps_content_script.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "contextMenus",
        "webRequest",
        "storage",
        "https:\/\/maps.google.com\/*",
        "https:\/\/maps.googleapis.com\/*",
        "http:\/\/en.wikipedia.org\/",
        "http:\/\/dbpedia.org\/",
        "http:\/\/upload.wikimedia.org\/wikipedia\/"
    ],
    "browser_action": {
        "default_name": "Display Map",
        "default_title": "WikiMaps",
        "default_icon": "img\/marker2.png",
        "default_popup": "html\/popup.html"
    },
    "manifest_version": 2,
    "content_security_policy": "default-src 'none'; font-src https:\/\/*.googleusercontent.com\/; style-src 'self' 'unsafe-inline' https:\/\/*.googleapis.com\/; script-src 'self' 'unsafe-eval' https:\/\/maps.gstatic.com\/ https:\/\/*.googleapis.com\/; connect-src 'self' http:\/\/dbpedia.org\/ http:\/\/en.wikipedia.org\/ https:\/\/maps.googleapis.com\/ https:\/\/maps.googleapis.com\/maps\/api\/js?v=3.exp&sensor=false; img-src http:\/\/upload.wikimedia.org\/wikipedia\/ https:\/\/maps.google.com https:\/\/*.googleapis.com\/ https:\/\/*.gstatic.com\/"
}