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"
    ]
}