EasyMap

Easily get directions to any address on a page!

ما هو EasyMap؟

EasyMap هو إضافة Chrome تم تطويرها بواسطة jchernus، والميزة الرئيسية لها هي "Easily get directions to any address on a page!".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة EasyMap

قم بتنزيل ملفات الامتداد EasyMap بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم EasyMap EasyMap
ID gdhkngibdllfjhciaobdcmeabafencdm
عنوان URL الرسمي https://chrome.google.com/webstore/detail/easymap/gdhkngibdllfjhciaobdcmeabafencdm
الوصف Easily get directions to any address on a page!
حجم الملف 98.3 KB
عدد التثبيتات 29
النسخة الحالية 1.0.0
آخر تحديث 2014-09-22
تاريخ النشر 2014-09-22
تقييم 5.00/5 مجموع تقييمات 3
المطور jchernus
نوع الدفع free
اللغات المدعومة 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"
}