Add to Calendar
Create appointment in google calendar, copies the title of the page in subject and url in body automatically
Add to Calendar क्या है?
Add to Calendar Nabheet Madan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Create appointment in google calendar, copies the title of the page in subject and url in body automatically"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Add to Calendar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Add to calendar extension allows you create google calendar appointment. It automatically defaults the title of the appointment to the title of the page where you want to create appointment and add the URL of the page to the body of the event. This will help in saving the manual copy/paste as well as person can check details later when reminder come.
एक्सटेंशन की मूल जानकारी
नाम | Add to Calendar |
ID | oghjdgibcijneidbooifphlcjhnmffcj |
आधिकारिक URL | https://chromewebstore.google.com/detail/add-to-calendar/oghjdgibcijneidbooifphlcjhnmffcj |
विवरण | Create appointment in google calendar, copies the title of the page in subject and url in body automatically |
फ़ाइल का आकार | 6.28 KB |
स्थापना संख्या | 26 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2018-09-22 |
प्रकाशन तिथि | 2018-09-22 |
डेवलपर | Nabheet Madan |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Add to Calendar", "version": "1.0.0", "description": "Create appointment in google calendar, copies the title of the page in subject and url in body automatically", "manifest_version": 2, "background": { "scripts": [ "background.js" ] }, "permissions": [ "contextMenus", "tabs", "activeTab", "storage" ], "icons": { "16": "calendar.png", "48": "calendar.png", "128": "calendar.png" }, "browser_action": { "default_icon": "calendar.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentscript.js" ], "run_at": "document_end" } ] } |