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”。

扩展截图

screenshot
screenshot

下载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 Linkedin RTL support
ID bkeinidnmmffimffcmdoheeciapelpad
官方URL 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]"
        }
    }
}