LTR-RTL

This extension allows you to change web page text direction.

LTR-RTL क्या है?

LTR-RTL DC द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to change web page text direction."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में LTR-RTL एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension allows you to change the web page text direction. This is useful when you are viewing right to left text such as Hebrew or Arabic in an application that displays from left to right.

Shortcuts:
Ctrl+Shift+J -- switch to RTL
Ctrl+Shift+E -- switch to LTR

Note 1: If one or both of the shortcuts don't work, it means that something else is mapped to them. Chrome allows you to remap extension shortcuts, and you can remap the shortcuts to something that isn't in use. Alternatively, the extension adds an item to the Chrome right click menu, which you can use to switch text direction instead of the shortcuts.

Note 2: The language direction will only change for HTML elements that don't have a specified language direction.                    

एक्सटेंशन की मूल जानकारी

नाम LTR-RTL LTR-RTL
ID dihficgdollilpfaliclpihepalmdgbb
आधिकारिक URL https://chromewebstore.google.com/detail/ltr-rtl/dihficgdollilpfaliclpihepalmdgbb
विवरण This extension allows you to change web page text direction.
फ़ाइल का आकार 4.09 KB
स्थापना संख्या 12,412
वर्तमान संस्करण 2.0.1
अंतिम अपडेट 2022-05-19
प्रकाशन तिथि 2014-11-18
रेटिंग 4.05/5 कुल 19 रेटिंग्स
डेवलपर DC
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "LTR-RTL",
    "description": "This extension allows you to change web page text direction.",
    "version": "2.0.1",
    "commands": {
        "RTL": {
            "suggested_key": {
                "default": "Ctrl+Shift+J",
                "mac": "Command+Shift+J"
            },
            "description": "Enable right to left"
        },
        "LTR": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "Enable left to right"
        }
    },
    "permissions": [
        "contextMenus",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "change_dir.js"
    }
}