Cronofy

Schedule directly from your browser tabs

Cronofyคืออะไร?

Cronofy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://cronofy.com และคุณลักษณะหลักของมันคือ "Schedule directly from your browser tabs"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        The Cronofy Chrome extension enables you to create personalized invitation links to enhance your Cronofy scheduling experience within Chrome.

It does this by finding the contact details on a web page and prepopulating a scheduling request, saving typing and removing room for error.

The SaaS tools and applications we use everyday are where the contact details of the people we want to meet with are stored. But not all these applications come with the scheduling features you need to create booking links or send calendar invites.

With our Chrome browser extension it doesn't matter. You can look at a client's profile and create a personalized invitation link directly from your CRM for example. Or you can create an invitation link at the same time as you are composing an email.

When you share a Cronofy invitation link with someone you do not commit to more than one meeting. The link can only be used to book one event in your calendar.

After a contact has clicked on the invitation link you sent them, they will only see the time slots that you've made available and won't access any information about other events in your calendar.

Benefits:

- Personalized scheduling experience
- Security and privacy
- Stay in control of your schedule
- Share your real-time availability                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Cronofy Cronofy
ID anglfpgnejdnlomjepkpjlfnhigepkip
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/cronofy/anglfpgnejdnlomjepkpjlfnhigepkip
คำอธิบาย Schedule directly from your browser tabs
ขนาดไฟล์ 1.27 MB
จำนวนการติดตั้ง 1,531
เวอร์ชันปัจจุบัน 0.15.5
อัปเดตครั้งล่าสุด 2024-02-16
วันที่เผยแพร่ 2020-05-25
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://cronofy.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.cronofy.com/scheduler/
URL หน้าช่วยเหลือ https://docs.cronofy.com/calendar-users/
URL หน้านโยบายความเป็นส่วนตัว https://docs.cronofy.com/policies/privacy-notice
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cronofy",
    "version": "0.15.5",
    "description": "Schedule directly from your browser tabs",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "js": [
                "content_scanner.js"
            ]
        },
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "gmail\/inject.js"
            ],
            "css": [
                "gmail\/gmail.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/*.cronofy.com\/scheduler\/browser_extensions\/chrome\/auth_complete*",
                "https:\/\/*.cronofy.com\/scheduler\/browser_extensions\/chrome\/auth_callback",
                "https:\/\/*.cronofy.com\/scheduler\/browser_extensions\/chrome\/welcome*"
            ],
            "js": [
                "auth_callback.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "assets\/icon-color-16.png",
        "48": "assets\/icon-color-48.png",
        "128": "assets\/icon-color-128.png"
    },
    "permissions": [
        "storage"
    ],
    "manifest_version": 3,
    "web_accessible_resources": [
        {
            "resources": [
                "gmail\/gmail.js",
                "gmail\/cronofy-button.png"
            ],
            "matches": [
                "*:\/\/mail.google.com\/*"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/mail.google.com\/*"
        ]
    },
    "incognito": "not_allowed",
    "action": {
        "default_icon": "assets\/icon-color-48.png",
        "default_popup": "popup.html",
        "default_title": "Cronofy"
    },
    "background": {
        "service_worker": "background.js"
    }
}