Random Rotation
Randomly rotates everything on every webpage you visit.
O que é Random Rotation?
Random Rotation é uma extensão do Chrome desenvolvida por Joseph Feld, e sua principal característica é "Randomly rotates everything on every webpage you visit.".
Baixar o arquivo CRX da Extensão Random Rotation
Baixe arquivos de extensão Random Rotation 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
This extension does more than just rotate everything on the page into an unreadable mess, it solves all your problems in life. By making everything comically unreadable, it will clear your mind and help you find inner peace. You can also turn it off if you want.
Informações Básicas da Extensão
Nome | Random Rotation |
ID | dnpffiachmphafhmajpcfalbmihgdkob |
URL Oficial | https://chromewebstore.google.com/detail/random-rotation/dnpffiachmphafhmajpcfalbmihgdkob |
Descrição | Randomly rotates everything on every webpage you visit. |
Tamanho do Arquivo | 8.36 KB |
Contagem de Instalações | 52 |
Versão Atual | 1.1 |
Última Atualização | 2018-09-03 |
Data de Publicação | 2018-09-03 |
Classificação | 4.50/5 Total de 2 Avaliações |
Desenvolvedor | Joseph Feld |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Random Rotation", "short_name": "Randomly Rotate", "description": "Randomly rotates everything on every webpage you visit.", "version": "1.1", "browser_action": { "default_icon": "icon128.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "128": "icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content script.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": true } } |