Share to Teams

Share any web page from your browser with your Teams

Vad är Share to Teams?

Share to Teams är en Chrome-tillägg utvecklad av João Ferreira, och dess huvudfunktion är "Share any web page from your browser with your Teams".

Tilläggsskärmbilder

screenshot

Ladda ner Share to Teams-förlängningens CRX-fil

Ladda ner Share to Teams-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Share to Teams Share to Teams
ID mncdedgmeogkaeicgbgpbnnejjebphof
Officiell webbadress https://chromewebstore.google.com/detail/share-to-teams/mncdedgmeogkaeicgbgpbnnejjebphof
Beskrivning Share any web page from your browser with your Teams
Filstorlek 4.27 KB
Antal Installationer 1,161
Aktuell Version 1.1
Senast Uppdaterad 2020-05-25
Publiceringsdatum 2020-05-25
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare João Ferreira
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://handsontek.net
Stödda Språk 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"
    ]
}