Hangouts RTL fixer
This extension fixes the text direction in Google Hangouts (Gmail chat) for RTL languages
Vad är Hangouts RTL fixer?
Hangouts RTL fixer är en Chrome-tillägg utvecklad av https://zvizvi.xyz, och dess huvudfunktion är "This extension fixes the text direction in Google Hangouts (Gmail chat) for RTL languages".
Tilläggsskärmbilder
Ladda ner Hangouts RTL fixer-förlängningens CRX-fil
Ladda ner Hangouts RTL fixer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
RTL support fixer for Google Hangouts (Gmail chat)
מתקן את הנגאאוטס (ג'ימייל צ'אט) מימין לשמאל. Grundläggande Information om Tillägg
| Namn | |
| ID | oohpklfcenaffjconedjebkaclkachmi |
| Officiell webbadress | https://chromewebstore.google.com/detail/hangouts-rtl-fixer/oohpklfcenaffjconedjebkaclkachmi |
| Beskrivning | This extension fixes the text direction in Google Hangouts (Gmail chat) for RTL languages |
| Filstorlek | 24.72 KB |
| Antal Installationer | 10,451 |
| Aktuell Version | 1.0.2 |
| Senast Uppdaterad | 2019-07-05 |
| Publiceringsdatum | 2019-07-03 |
| Betyg | 4.47/5 Totalt 15 Betyg |
| Utvecklare | https://zvizvi.xyz |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://zvizvi.xyz/ |
| Stödda Språk | 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
}
]
} | |