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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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:\/\/*\/*" ] } |