Zoho Calendar Sync

Sync your Zoho tasks to Google Calendar automatically

Zoho Calendar Sync là gì?

Zoho Calendar Sync là một tiện ích mở rộng Chrome được phát triển bởi Ran, và tính năng chính của nó là "Sync your Zoho tasks to Google Calendar automatically".

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

screenshot
screenshot

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

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

                        After each creation/ update of Zoho task, your Google Calendar would update with its details.

Need to change your Zoho portal URL at extension options.

Can be disabled anytime, anywhere.                    

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

Tên Zoho Calendar Sync Zoho Calendar Sync
ID mnmipipgdocmbbadhfnhkeahemkgedhc
URL Chính Thức https://chrome.google.com/webstore/detail/zoho-calendar-sync/mnmipipgdocmbbadhfnhkeahemkgedhc
Mô tả Sync your Zoho tasks to Google Calendar automatically
Kích Thước Tệp 33.02 KB
Số Lần Cài Đặt 1,000
Phiên Bản Hiện Tại 6.69.66.69
Cập Nhật Lần Cuối 2019-10-16
Ngày Phát Hành 2019-10-16
Nhà Phát Triển Ran
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": "Zoho Calendar Sync",
    "version": "6.69.66.69",
    "description": "Sync your Zoho tasks to Google Calendar automatically",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAjEvAlmHltnYivXX53QQgr2Fe8nmuMU2rzv5UiT+qpmKcMHBwjZEhUNG8zwLabc4NfxP7\/7cfVrVqJEjkwnB0aYJqPjFy0HeGsv0R486OboNX3ZQdQ135UemIzyoXygTKeyrLbKjwetliv\/GNIquzlZ1UEWHUiax8GDYOruz+9wUZ8Kje7F\/zAX00XYYq0PPd3NGUHOszZWz+O5KfBL7\/rurAWU7HilPqdBu7hOAnqK5ZaXHswuj\/B8nGqfrtpTymkabx\/rBtMap+9P2zT4GqZLCVv5tNh+9utLIt6WmhWP47nLyRaVcctStfsy0Wil6rsX5\/Wv9zD8x9+VlDOKHIrwIDAQAB",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/projects.zoho.com\/*"
            ],
            "js": [
                "background\/storage.js",
                "dom\/scraper.js",
                "dom\/main.js"
            ]
        },
        {
            "js": [
                "dom\/xhrListener.js"
            ],
            "matches": [
                "https:\/\/projects.zoho.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "identity",
        "activeTab",
        "tabs",
        "storage",
        "contextMenus",
        "webRequest",
        "https:\/\/projects.zoho.com\/*\/updateaction.do",
        "https:\/\/projects.zoho.com\/*\/deletetodotask.do"
    ],
    "oauth2": {
        "client_id": "302170307712-96acdij9nirukkm7mhgprmmrd2evmil7.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/calendar"
        ]
    },
    "background": {
        "scripts": [
            "background\/storage.js",
            "background\/gcalendar.js",
            "background\/main.js"
        ],
        "persistent": true
    },
    "options_page": "options\/options.html",
    "page_action": {
        "default_icon": {
            "128": "images\/get_started128.png"
        }
    },
    "icons": {
        "128": "images\/get_started128.png"
    },
    "manifest_version": 2
}