Share to Teams

Share any web page from your browser with your Teams

Share to Teamsคืออะไร?

Share to Teams เป็นส่วนขยายของ Chrome ที่พัฒนาโดย João Ferreira และคุณลักษณะหลักของมันคือ "Share any web page from your browser with your Teams"

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

screenshot

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

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

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

                        This will allow you to share a link directly to Teams channel without switching context. 
You no longer need to switch applications to share relevant web sites with your co-workers.                    

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

ชื่อ Share to Teams Share to Teams
ID mncdedgmeogkaeicgbgpbnnejjebphof
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/share-to-teams/mncdedgmeogkaeicgbgpbnnejjebphof
คำอธิบาย Share any web page from your browser with your Teams
ขนาดไฟล์ 4.27 KB
จำนวนการติดตั้ง 1,161
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2020-05-25
วันที่เผยแพร่ 2020-05-25
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา João Ferreira
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://handsontek.net
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Share to Teams",
    "version": "1.1",
    "manifest_version": 2,
    "description": "Share any web page from your browser with your Teams",
    "homepage_url": "https:\/\/teams.handsontek.net",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "MacCtrl+Shift+S"
            },
            "description": "Share any web page from your browser with your Teams"
        }
    },
    "browser_action": {
        "default_title": "Share to Teams",
        "default_icon": "sharetoteams.png"
    },
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "tabs"
    ]
}