Random Rotation
Randomly rotates everything on every webpage you visit.
Cos'è Random Rotation?
Random Rotation è un'estensione di Chrome sviluppata da Joseph Feld, e la sua funzione principale è "Randomly rotates everything on every webpage you visit.".
Scarica il file CRX dell'estensione Random Rotation
Scarica i file di estensione Random Rotation in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Random Rotation |
ID | dnpffiachmphafhmajpcfalbmihgdkob |
URL Ufficiale | https://chromewebstore.google.com/detail/random-rotation/dnpffiachmphafhmajpcfalbmihgdkob |
Descrizione | Randomly rotates everything on every webpage you visit. |
Dimensione del File | 8.36 KB |
Conteggio Installazioni | 52 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2018-09-03 |
Data di Pubblicazione | 2018-09-03 |
Valutazione | 4.50/5 Totale 2 Valutazioni |
Sviluppatore | Joseph Feld |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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 } } |