Google Hangouts Chat Purge
Deletes all your messages from the current chat in Google Hangouts chat
Что такое Google Hangouts Chat Purge?
Google Hangouts Chat Purge - это расширение Chrome, разработанное EE, и его основная функция - "Deletes all your messages from the current chat in Google Hangouts chat".
Снимки экрана расширения
Скачать файл CRX расширения Google Hangouts Chat Purge
Скачайте файлы расширений Google Hangouts Chat Purge в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Deletes all the messages from the user in the current chat (PURGE) or delete the last message (POP). Основная информация о расширении
| Название | |
| ID | lmocfpgniidnlabjhanjflbpchicghlj |
| Официальный URL | https://chromewebstore.google.com/detail/google-hangouts-chat-purg/lmocfpgniidnlabjhanjflbpchicghlj |
| Описание | Deletes all your messages from the current chat in Google Hangouts chat |
| Размер файла | 8.27 KB |
| Количество установок | 16 |
| Текущая Версия | 1.0.2 |
| Последнее Обновление | 2019-04-05 |
| Дата публикации | 2019-04-05 |
| Разработчик | EE |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Google Hangouts Chat Purge",
"version": "1.0.2",
"description": "Deletes all your messages from the current chat in Google Hangouts chat",
"permissions": [
"activeTab"
],
"content_scripts": [
{
"matches": [
"*:\/\/chat.google.com\/*"
],
"js": [
"content-script.js"
],
"run-at": "document-end"
}
],
"browser_action": {
"default_popup": "popup.html"
},
"manifest_version": 2
} | |