Linkedin RTL support
Adds multilingual support to linkedin text fields
什麼是Linkedin RTL support?
Linkedin RTL support是由Elad Mizrahi開發的Chrome擴展程式,該擴展的主要功能是“Adds multilingual support to linkedin text fields”。
擴展截圖
下載Linkedin RTL support擴展crx文件
下載Linkedin RTL support擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
The extension searches for text fields in LinkedIn and adds auto direction to the field, and aligns the text direction to the start of the line. And make sure that if you have Grammarly it will not block your text when RTL.
擴展基本資訊
名稱 | Linkedin RTL support |
ID | bkeinidnmmffimffcmdoheeciapelpad |
官方網址 | https://chromewebstore.google.com/detail/linkedin-rtl-support/bkeinidnmmffimffcmdoheeciapelpad |
簡介 | Adds multilingual support to linkedin text fields |
檔案大小 | 12.99 KB |
安裝次數 | 51 |
目前版本 | 0.3.0 |
更新時間 | 2023-04-09 |
上架時間 | 2023-04-08 |
評分 | 5.00/5 共 2 次評分 |
開發者 | Elad Mizrahi |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Linkedin RTL support", "version": "0.3.0", "description": "Adds multilingual support to linkedin text fields", "icons": { "16": "images\/icon_16.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png", "256": "images\/icon_256.png", "512": "images\/icon_512.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.linkedin.com\/*" ], "js": [ "index.js" ], "css": [ "index.css" ], "run_at": "document_end" } ], "browser_specific_settings": { "gecko": { "id": "[email protected]" } } } |