Add to Calendar

Create appointment in google calendar, copies the title of the page in subject and url in body automatically

Add to Calendar là gì?

Add to Calendar là một tiện ích mở rộng Chrome được phát triển bởi Nabheet Madan, và tính năng chính của nó là "Create appointment in google calendar, copies the title of the page in subject and url in body automatically".

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

screenshot

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

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

                        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.                    

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

Tên Add to Calendar Add to Calendar
ID oghjdgibcijneidbooifphlcjhnmffcj
URL Chính Thức https://chromewebstore.google.com/detail/add-to-calendar/oghjdgibcijneidbooifphlcjhnmffcj
Mô tả Create appointment in google calendar, copies the title of the page in subject and url in body automatically
Kích Thước Tệp 6.28 KB
Số Lần Cài Đặt 26
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2018-09-22
Ngày Phát Hành 2018-09-22
Nhà Phát Triển Nabheet Madan
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}