Linkedin RTL support

Adds multilingual support to linkedin text fields

Linkedin RTL supportคืออะไร?

Linkedin RTL support เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Elad Mizrahi และคุณลักษณะหลักของมันคือ "Adds multilingual support to linkedin text fields"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Linkedin RTL support

ดาวน์โหลดไฟล์ส่วนขยาย 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]"
        }
    }
}