Hangouts RTL fixer
This extension fixes the text direction in Google Hangouts (Gmail chat) for RTL languages
Что такое Hangouts RTL fixer?
Hangouts RTL fixer - это расширение Chrome, разработанное https://zvizvi.xyz, и его основная функция - "This extension fixes the text direction in Google Hangouts (Gmail chat) for RTL languages".
Снимки экрана расширения
Скачать файл CRX расширения Hangouts RTL fixer
Скачайте файлы расширений Hangouts RTL fixer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
RTL support fixer for Google Hangouts (Gmail chat)
מתקן את הנגאאוטס (ג'ימייל צ'אט) מימין לשמאל. Основная информация о расширении
| Название | |
| ID | oohpklfcenaffjconedjebkaclkachmi |
| Официальный URL | https://chromewebstore.google.com/detail/hangouts-rtl-fixer/oohpklfcenaffjconedjebkaclkachmi |
| Описание | This extension fixes the text direction in Google Hangouts (Gmail chat) for RTL languages |
| Размер файла | 24.72 KB |
| Количество установок | 10,451 |
| Текущая Версия | 1.0.2 |
| Последнее Обновление | 2019-07-05 |
| Дата публикации | 2019-07-03 |
| Рейтинг | 4.47/5 Всего 15 оценок |
| Разработчик | https://zvizvi.xyz |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://zvizvi.xyz/ |
| Поддерживаемые языки | iw |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Hangouts RTL fixer",
"description": "This extension fixes the text direction in Google Hangouts (Gmail chat) for RTL languages",
"version": "1.0.2",
"author": "[email protected]",
"permissions": [
"https:\/\/hangouts.google.com\/webchat\/*"
],
"icons": {
"48": "images\/icon_48.png",
"128": "images\/icon_128.png"
},
"browser_action": {
"default_icon": {
"16": "images\/icon_16.png",
"22": "images\/icon_22.png",
"24": "images\/icon_24.png",
"32": "images\/icon_32.png",
"44": "images\/icon_44.png"
}
},
"content_scripts": [
{
"js": [
"js\/main.js"
],
"matches": [
"https:\/\/hangouts.google.com\/webchat\/*"
],
"run_at": "document_end",
"all_frames": true
}
]
} | |