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]"
        }
    }
}