Highlight to Google Calendar

Highlight text and open popup to automatically add events to google calendar.

Highlight to Google Calendar क्या है?

Highlight to Google Calendar bazeblackwood द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Highlight text and open popup to automatically add events to google calendar."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Highlight to Google Calendar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        A chrome extension that allows you to turn highlighted text into Google Calendar events. (Google Calendar used to do this automatically when entering events, but no longer 😿)

Simply highlight some text with an event date and time in it, and the result will be in the popup when you click the extension icon when you click the top right. The extension will generate a shorter a title for you, and put the remaining details in the description of the event. Click "Create Event" after a successful parse and it will take you to the event creation dialog in Google Calendar.                    

एक्सटेंशन की मूल जानकारी

नाम Highlight to Google Calendar Highlight to Google Calendar
ID eehlbikncmbbmebknibmlajbmhjiepbh
आधिकारिक URL https://chromewebstore.google.com/detail/highlight-to-google-calen/eehlbikncmbbmebknibmlajbmhjiepbh
विवरण Highlight text and open popup to automatically add events to google calendar.
फ़ाइल का आकार 295 KB
स्थापना संख्या 616
वर्तमान संस्करण 1.0
अंतिम अपडेट 2018-06-03
प्रकाशन तिथि 2018-06-02
रेटिंग 3.86/5 कुल 7 रेटिंग्स
डेवलपर bazeblackwood
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://blackwood.io
सहायता पृष्ठ URL https://github.com/blackwood/highlight-to-google-calendar/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Highlight to Google Calendar",
    "description": "Highlight text and open popup to automatically add events to google calendar.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "src\/popup.html"
    },
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/build\/main.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}