Hangouts RTL fixer
This extension fixes the text direction in Google Hangouts (Gmail chat) for RTL languages
Co to jest Hangouts RTL fixer?
Hangouts RTL fixer to rozszerzenie Chrome opracowane przez https://zvizvi.xyz, a jego główną funkcją jest „This extension fixes the text direction in Google Hangouts (Gmail chat) for RTL languages”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Hangouts RTL fixer
Pobierz pliki rozszerzeń Hangouts RTL fixer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
RTL support fixer for Google Hangouts (Gmail chat) מתקן את הנגאאוטס (ג'ימייל צ'אט) מימין לשמאל.
Podstawowe informacje o rozszerzeniu
Nazwa | Hangouts RTL fixer |
ID | oohpklfcenaffjconedjebkaclkachmi |
Oficjalny URL | https://chromewebstore.google.com/detail/hangouts-rtl-fixer/oohpklfcenaffjconedjebkaclkachmi |
Opis | This extension fixes the text direction in Google Hangouts (Gmail chat) for RTL languages |
Rozmiar pliku | 24.72 KB |
Liczba instalacji | 10,451 |
Aktualna Wersja | 1.0.2 |
Ostatnia Aktualizacja | 2019-07-05 |
Data Publikacji | 2019-07-03 |
Ocena | 4.47/5 Łącznie 15 Oceny |
Deweloper | https://zvizvi.xyz |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://zvizvi.xyz/ |
Obsługiwane Języki | 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 } ] } |