LTR-RTL

This extension allows you to change web page text direction.

什麼是LTR-RTL?

LTR-RTL是由DC開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to change web page text direction.”。

擴展截圖

screenshot

下載LTR-RTL擴展crx文件

下載LTR-RTL擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}