RTL toggle
rtl-toggle detects and toggles the language direction ('rtl'/'ltr') of a site.
RTL toggle란 무엇입니까?
RTL toggle은(는) aris.magrin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "rtl-toggle detects and toggles the language direction ('rtl'/'ltr') of a site."입니다.
확장 프로그램 스크린샷
RTL toggle 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" } } |