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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Create appointment in google calendar, copies the title of the page in subject and url in body automatically"입니다.

확장 프로그램 스크린샷

screenshot

Add to Calendar 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
        }
    ]
}