RTL toggle

rtl-toggle detects and toggles the language direction ('rtl'/'ltr') of a site.

RTL toggle क्या है?

RTL toggle aris.magrin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "rtl-toggle detects and toggles the language direction ('rtl'/'ltr') of a site."।

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

screenshot
screenshot
screenshot

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

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

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

                        When you are developing for websites and applications that support languages that are written from right to left it's really helpful to visualize and toggle the language direction in the browser independently from the actual language that is being used.

HOW IT WORKS

The extensions does two things: Detects and toggles the direction of the website's language.

Detection:
When a new tab is loaded a script is checking the dir attribute of the  tag element. If the attribute is set to 'rtl', the extension's badge text is also set to "RTL" indicating that the current website uses a language that is written from right to left.

Toggling:
When the user clicks the extension's icon, a script toggles (or adds it if not set) the value of dir attribute of the  tag to one of the two values 'rtl'/'ltr'.                    

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

नाम RTL toggle RTL toggle
ID diimdfmlegodnjbcgajllidffehegdbc
आधिकारिक URL https://chromewebstore.google.com/detail/rtl-toggle/diimdfmlegodnjbcgajllidffehegdbc
विवरण rtl-toggle detects and toggles the language direction ('rtl'/'ltr') of a site.
फ़ाइल का आकार 8.65 KB
स्थापना संख्या 1,832
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2022-06-21
प्रकाशन तिथि 2022-06-13
रेटिंग 4.57/5 कुल 14 रेटिंग्स
डेवलपर aris.magrin
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/arismag/rtl-toggle
सहायता पृष्ठ URL https://github.com/arismag/rtl-toggle
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RTL toggle",
    "description": "rtl-toggle detects and toggles the language direction ('rtl'\/'ltr') of a site.",
    "version": "1.0.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_title": "Toggle language direction"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "rtl-init-check.js"
            ]
        }
    ],
    "icons": {
        "32": "images\/rtl-toggle.png",
        "48": "images\/rtl-toggle.png",
        "128": "images\/rtl-toggle.png"
    }
}