Language Direction
Change the direction and the writing mode of the page.
O que é Language Direction?
Language Direction é uma extensão do Chrome desenvolvida por https://coderundebug.com, e sua principal característica é "Change the direction and the writing mode of the page.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Language Direction
Baixe arquivos de extensão Language Direction no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Language Direction |
ID | oakeadgoncdiphjhdhhoagbfgfclhllp |
URL Oficial | https://chromewebstore.google.com/detail/language-direction/oakeadgoncdiphjhdhhoagbfgfclhllp |
Descrição | Change the direction and the writing mode of the page. |
Tamanho do Arquivo | 26.35 KB |
Contagem de Instalações | 39 |
Versão Atual | 1.0 |
Última Atualização | 2022-12-20 |
Data de Publicação | 2022-12-20 |
Desenvolvedor | https://coderundebug.com |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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:\/\/*\/*" ] } |