Add to Things for Gmail
Adds a button to Gmail threads to add them to Things, including a link to the message.
Что такое Add to Things for Gmail?
Add to Things for Gmail - это расширение Chrome, разработанное https://schof.co, и его основная функция - "Adds a button to Gmail threads to add them to Things, including a link to the message.".
Снимки экрана расширения
Скачать файл CRX расширения Add to Things for Gmail
Скачайте файлы расширений Add to Things for Gmail в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Simple extension, which adds a button to Gmail threads to add them to Things, including a link to the message. Основная информация о расширении
| Название | |
| ID | mkpapmkjeddhenbmhdihdiiijgckifln |
| Официальный URL | https://chromewebstore.google.com/detail/add-to-things-for-gmail/mkpapmkjeddhenbmhdihdiiijgckifln |
| Описание | Adds a button to Gmail threads to add them to Things, including a link to the message. |
| Размер файла | 52.79 KB |
| Количество установок | 306 |
| Текущая Версия | 1.0.1 |
| Последнее Обновление | 2019-07-24 |
| Дата публикации | 2019-07-24 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | https://schof.co |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://schof.co |
| URL страницы помощи | https://schof.co/?utm_source=gmail-things |
| URL страницы политики конфиденциальности | https://infowijs.nl/privacy?r=google-webstore |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Add to Things for Gmail",
"short_name": "Things",
"version": "1.0.1",
"description": "Adds a button to Gmail threads to add them to Things, including a link to the message.",
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*"
],
"js": [
"content.js"
]
}
],
"icons": {
"128": "icon.png"
},
"web_accessible_resources": [
"content.js",
"main.js",
"vendor.js"
],
"manifest_version": 2
} | |