Language Direction
Change the direction and the writing mode of the page.
什麼是Language Direction?
Language Direction是由https://coderundebug.com開發的Chrome擴展程式,該擴展的主要功能是“Change the direction and the writing mode of the page.”。
擴展截圖
下載Language Direction擴展crx文件
下載Language Direction擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Some languages show text in different directions. English is written from left to right, Arabic is right to left and Chinese is written from top to bottom. This extension allows you to change how the text on a page is written. Its primary use is for software developers and testing CSS. It sets the body element with the CSS properties "direction" and "writing-mode" to change how the flow of text and other elements appear on the page. This can be helpful for developers testing their own sites to make sure everything works correctly in different places around the world.
擴展基本資訊
名稱 | Language Direction |
ID | oakeadgoncdiphjhdhhoagbfgfclhllp |
官方網址 | https://chromewebstore.google.com/detail/language-direction/oakeadgoncdiphjhdhhoagbfgfclhllp |
簡介 | Change the direction and the writing mode of the page. |
檔案大小 | 26.35 KB |
安裝次數 | 39 |
目前版本 | 1.0 |
更新時間 | 2022-12-20 |
上架時間 | 2022-12-20 |
開發者 | https://coderundebug.com |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | ms,de,en,fr,es,ru,iw,hi,ar,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_title__", "description": "__MSG_description__", "author": "[email protected]", "homepage_url": "https:\/\/CodeRunDebug.com", "version": "1.0", "icons": { "16": "images\/default16.png", "32": "images\/default32.png", "48": "images\/default48.png", "128": "images\/default128.png" }, "default_locale": "en", "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/default16.png", "32": "images\/default32.png", "48": "images\/default48.png", "128": "images\/default128.png" } }, "permissions": [ "scripting", "activeTab", "storage", "tabs" ], "host_permissions": [ "https:\/\/*\/*", "http:\/\/*\/*" ] } |