Calendar Location Helper

Modify Google Calendar to help pick locations of a map

ما هو Calendar Location Helper؟

Calendar Location Helper هو إضافة Chrome تم تطويرها بواسطة roopak.v، والميزة الرئيسية لها هي "Modify Google Calendar to help pick locations of a map".

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

screenshot

تحميل ملف CRX للإضافة Calendar Location Helper

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

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

                        Very simple app that allows you to select places for meetings on Google Calendar using Google Maps.

The advantage is that if you use the addresses generated by this, it is most likely good enough for Google Now to notify you "n minutes" before it is time to leave.                    

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

الاسم Calendar Location Helper Calendar Location Helper
ID gepgdhgppljdcdohapjpjoiodhlmgjgb
عنوان URL الرسمي https://chrome.google.com/webstore/detail/calendar-location-helper/gepgdhgppljdcdohapjpjoiodhlmgjgb
الوصف Modify Google Calendar to help pick locations of a map
حجم الملف 99.05 KB
عدد التثبيتات 10
النسخة الحالية 0.0.1
آخر تحديث 2013-11-17
تاريخ النشر 2013-11-17
تقييم 3.00/5 مجموع تقييمات 1
المطور roopak.v
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Calendar Location Helper",
    "version": "0.0.1",
    "description": "Modify Google Calendar to help pick locations of a map",
    "browser_action": {
        "name": "Manipulate DOM",
        "icons": [
            "icon.png"
        ],
        "default_icon": "icon.png"
    },
    "web_accessible_resources": [
        "jquery.min.map",
        "marker.jpg"
    ],
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "background.js"
            ],
            "matches": [
                "http:\/\/*.google.com\/calendar*",
                "https:\/\/*.google.com\/calendar*"
            ],
            "run_at": "document_start"
        }
    ]
}