Random Rotation
Randomly rotates everything on every webpage you visit.
Was ist Random Rotation?
Random Rotation ist eine Chrome-Erweiterung, die von Joseph Feld entwickelt wurde, und ihr Hauptmerkmal ist "Randomly rotates everything on every webpage you visit.".
Random Rotation-Erweiterungs-CRX-Datei herunterladen
Laden Sie Random Rotation-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Random Rotation |
ID | dnpffiachmphafhmajpcfalbmihgdkob |
Offizielle URL | https://chromewebstore.google.com/detail/random-rotation/dnpffiachmphafhmajpcfalbmihgdkob |
Beschreibung | Randomly rotates everything on every webpage you visit. |
Dateigröße | 8.36 KB |
Installationsanzahl | 52 |
Aktuelle Version | 1.1 |
Letztes Update | 2018-09-03 |
Veröffentlichungsdatum | 2018-09-03 |
Bewertung | 4.50/5 Insgesamt 2 Bewertungen |
Entwickler | Joseph Feld |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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 } } |