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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nabheet Madan และคุณลักษณะหลักของมันคือ "Create appointment in google calendar, copies the title of the page in subject and url in body automatically"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Add to Calendar

ดาวน์โหลดไฟล์ส่วนขยาย Add to Calendar ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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"
        }
    ]
}