Teem

Chrome Extension for Teem.

Teemคืออะไร?

Teem เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Teem และคุณลักษณะหลักของมันคือ "Chrome Extension for Teem."

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

screenshot

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

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

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

                        With the Teem Google extension, any employee at an organization Powered by Teem can reap the benefits of booking with Teem without leaving their existing work calendar behind. Set up your meetings per usual: invite participants, select the best date and time based on your participants’ calendars. Then, using the extension, choose the room(s) that work best for your meeting based on location, capacity, and amenity filters.                    

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

ชื่อ Teem Teem
ID phjnilkjjfbilopeodkkclehigebkdhg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/teem/phjnilkjjfbilopeodkkclehigebkdhg
คำอธิบาย Chrome Extension for Teem.
ขนาดไฟล์ 1.41 MB
จำนวนการติดตั้ง 3,823
เวอร์ชันปัจจุบัน 6.4.2.6002
อัปเดตครั้งล่าสุด 2024-02-01
วันที่เผยแพร่ 2020-05-27
คะแนน 3.80/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Teem
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.teem.com/
URL หน้าช่วยเหลือ https://www.teem.com/support
URL หน้านโยบายความเป็นส่วนตัว https://www.teem.com/privacy
ภาษาที่รองรับ en,uk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "6.4.2.6002",
    "name": "Teem",
    "description": "__MSG_application_description__",
    "default_locale": "en",
    "icons": {
        "16": "images\/icon-black-16.png",
        "32": "images\/icon-black-32.png",
        "48": "images\/icon-black-48.png",
        "64": "images\/icon-black-64.png",
        "80": "images\/icon-black-80.png",
        "128": "images\/icon-black-128.png"
    },
    "externally_connectable": {
        "ids": [
            "*"
        ],
        "matches": [
            "http:\/\/localhost:8000\/*",
            "https:\/\/app.teem.ninja\/*",
            "https:\/\/app.teem.com\/*",
            "https:\/\/accounts.google.com\/*",
            "https:\/\/legacy.teem.com\/*"
        ]
    },
    "action": {
        "default_popup": "info.html",
        "default_title": "__MSG_application_title__",
        "default_icon": {
            "16": "images\/icon-black-16.png",
            "32": "images\/icon-black-32.png",
            "48": "images\/icon-black-48.png",
            "64": "images\/icon-black-64.png",
            "80": "images\/icon-black-80.png",
            "128": "images\/icon-black-128.png"
        }
    },
    "background": {
        "service_worker": "js\/Background.bundle.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/calendar\/*"
            ],
            "js": [
                "js\/Content.bundle.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "identity",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/calendar.google.com\/*"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "*.html",
                "js\/*.js",
                "images\/*.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}