OnceHub for Gmail

Create your ScheduleOnce meeting invitations without leaving Gmail

OnceHub for Gmail란 무엇입니까?

OnceHub for Gmail은(는) https://oncehub.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Create your ScheduleOnce meeting invitations without leaving Gmail"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

OnceHub for Gmail 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        >> Instant access to your booking page links <<
Find and share all your ScheduleOnce booking pages.

>> Automatically personalize links <<
Automatically personalize booking links with the 'To' field in the email.

>> Create one-time links <<
Instantly generate one-time links, eliminating any chance of unwanted repeat bookings. 

>> Supports all meeting types <<
Easily share scheduling links for all types of meetings including group, panel and one-on-one meetings.

>> Tight integration with Gmail for optimum performance <<
Works in complete harmony with your inbox and contacts to ensure quick and easy scheduling with every email.

---------------------- About OnceHub ----------------------
OnceHub's scheduling and chatbot solutions are here to increase your sales, delight your customers, and save you time

Try it free - www.oncehub.com                    

확장 프로그램 기본 정보

이름 OnceHub for Gmail OnceHub for Gmail
ID ijlpmpplkkhpkhgpingckadmlohkgddg
공식 URL https://chromewebstore.google.com/detail/oncehub-for-gmail/ijlpmpplkkhpkhgpingckadmlohkgddg
설명 Create your ScheduleOnce meeting invitations without leaving Gmail
파일 크기 616 KB
설치 횟수 7,872
현재 버전 27.3
최근 업데이트 2024-02-22
출시 날짜 2020-05-04
평점 4.85/5 총 68 개의 평점
개발자 https://oncehub.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.oncehub.com/scheduleonce/home
도움말 페이지 URL https://help.oncehub.com
개인정보 보호 정책 페이지 URL https://www.oncehub.com/trustcenter/legal/privacynotice
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "OnceHub for Gmail",
    "version": "27.3",
    "description": "Create your ScheduleOnce meeting invitations without leaving Gmail",
    "icons": {
        "16": "assets\/images\/icon16.png",
        "32": "assets\/images\/icon32.png",
        "48": "assets\/images\/icon48.png",
        "128": "assets\/images\/icon128.png"
    },
    "manifest_version": 3,
    "permissions": [
        "activeTab",
        "cookies",
        "storage",
        "tabs",
        "management",
        "scripting"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "service_worker": "serviceworker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "inbox.js",
                "iframe.js",
                "contentscript.js",
                "runtime.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "iframe.js",
                "contentscript.js",
                "runtime.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'",
        "sandbox": "sandbox allow-scripts;"
    },
    "action": {
        "default_icon": {
            "32": "assets\/images\/icon32.png",
            "48": "assets\/images\/icon48.png"
        },
        "default_title": "OnceHub for Gmail"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "index.html",
                "assets\/images\/ext-icon-gmail.svg"
            ],
            "matches": [
                ""
            ]
        }
    ]
}