Random Rotation
Randomly rotates everything on every webpage you visit.
Qu'est-ce que Random Rotation ?
Random Rotation est une extension Chrome développée par Joseph Feld, et sa fonction principale est "Randomly rotates everything on every webpage you visit.".
Télécharger le fichier CRX de l'extension Random Rotation
Téléchargez les fichiers d'extension Random Rotation au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Random Rotation |
ID | dnpffiachmphafhmajpcfalbmihgdkob |
URL Officiel | https://chromewebstore.google.com/detail/random-rotation/dnpffiachmphafhmajpcfalbmihgdkob |
Description | Randomly rotates everything on every webpage you visit. |
Taille du Fichier | 8.36 KB |
Nombre d'Installations | 52 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2018-09-03 |
Date de Publication | 2018-09-03 |
Évaluation | 4.50/5 Total 2 Évaluations |
Développeur | Joseph Feld |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } } |