WriteRight

Detects the written language and sets the writing direction to RTL/LTR

Τι είναι το WriteRight;

Το WriteRight είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Arik W, και η κύρια λειτουργία του είναι "Detects the written language and sets the writing direction to RTL/LTR".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης WriteRight

Λήψη αρχείων επέκτασης WriteRight σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        # WriteRight

WriteRight is a chrome extension that automatically sets the writing direction of input elements and allows the user to override it with keyboard shortcuts.

## Features

- Automatically detects the writing direction of the first word character in an input element and sets it to RTL or LTR accordingly.
- Allows the user to manually set the writing direction to RTL with the right control and right shift keys, or to LTR with the left control and left shift keys.
- Only changes the writing direction of editable input elements.
- Re-enables the auto-detection mode when the input element is cleared.

## Use Cases

WriteRight is especially useful for users who need to switch between different writing directions frequently. Some examples are:

- On Windows, users can change the writing direction to LTR or RTL using CTRL + LEFT or RIGHT SHIFT shortcuts. This feature is missing from Chrome on Linux, but WriteRight enables it.
- WriteRight also automatically sets the writing direction in webpages that align the text to a fixed side. For example, in Google's website, the search field is fixed to LTR, but WriteRight can change it to RTL if needed.

## Usage

After installing WriteRight, you can use it on any webpage that has input elements. Just start typing and the extension will automatically set the writing direction for you. If you want to override the writing direction, you can use the keyboard shortcuts: left control and left shift for LTR, or right control and right shift for RTL.

## Development

WriteRight was generated using Bing's GPT, a powerful natural language processing model that can create various types of content. The extension's source files are available on [Github](https://github.com/arikw/write-right-extension), where you can also report issues or suggest improvements.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα WriteRight WriteRight
ID gleiglfcmildnecmodgoeijleblhobjk
Επίσημο URL https://chromewebstore.google.com/detail/writeright/gleiglfcmildnecmodgoeijleblhobjk
Περιγραφή Detects the written language and sets the writing direction to RTL/LTR
Μέγεθος Αρχείου 17.95 KB
Αριθμός Εγκαταστάσεων 392
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2023-04-29
Ημερομηνία Δημοσίευσης 2023-04-21
Αξιολόγηση 4.80/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής Arik W
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/arikw/write-right-extension
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/arikw/write-right-extension/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "WriteRight",
    "version": "1.1",
    "description": "Detects the written language and sets the writing direction to RTL\/LTR",
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "all_frames": true,
            "run_at": "document_end",
            "js": [
                "direction-switcher.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    }
}