Linkedin RTL support

Adds multilingual support to linkedin text fields

Linkedin RTL support là gì?

Linkedin RTL support là một tiện ích mở rộng Chrome được phát triển bởi Elad Mizrahi, và tính năng chính của nó là "Adds multilingual support to linkedin text fields".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Linkedin RTL support

Tải xuống các tệp mở rộng Linkedin RTL support dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Linkedin RTL support Linkedin RTL support
ID bkeinidnmmffimffcmdoheeciapelpad
URL Chính Thức https://chromewebstore.google.com/detail/linkedin-rtl-support/bkeinidnmmffimffcmdoheeciapelpad
Mô tả Adds multilingual support to linkedin text fields
Kích Thước Tệp 12.99 KB
Số Lần Cài Đặt 51
Phiên Bản Hiện Tại 0.3.0
Cập Nhật Lần Cuối 2023-04-09
Ngày Phát Hành 2023-04-08
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Elad Mizrahi
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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]"
        }
    }
}