LTR-RTL

This extension allows you to change web page text direction.

LTR-RTL là gì?

LTR-RTL là một tiện ích mở rộng Chrome được phát triển bởi DC, và tính năng chính của nó là "This extension allows you to change web page text direction.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng LTR-RTL

Tải xuống các tệp mở rộng LTR-RTL dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên LTR-RTL LTR-RTL
ID dihficgdollilpfaliclpihepalmdgbb
URL Chính Thức https://chromewebstore.google.com/detail/ltr-rtl/dihficgdollilpfaliclpihepalmdgbb
Mô tả This extension allows you to change web page text direction.
Kích Thước Tệp 4.09 KB
Số Lần Cài Đặt 12,412
Phiên Bản Hiện Tại 2.0.1
Cập Nhật Lần Cuối 2022-05-19
Ngày Phát Hành 2014-11-18
Đánh Giá 4.05/5 Tổng số 19 Đánh Giá
Nhà Phát Triển DC
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}