Random Rotation

Randomly rotates everything on every webpage you visit.

¿Qué es Random Rotation?

Random Rotation es una extensión de Chrome desarrollada por Joseph Feld, y su función principal es "Randomly rotates everything on every webpage you visit.".

Descargar Archivo CRX de la Extensión Random Rotation

Descarga archivos de extensión Random Rotation en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Random Rotation Random Rotation
ID dnpffiachmphafhmajpcfalbmihgdkob
URL Oficial https://chromewebstore.google.com/detail/random-rotation/dnpffiachmphafhmajpcfalbmihgdkob
Descripción Randomly rotates everything on every webpage you visit.
Tamaño del Archivo 8.36 KB
Cantidad de Instalaciones 52
Versión Actual 1.1
Última Actualización 2018-09-03
Fecha de Publicación 2018-09-03
Calificación 4.50/5 Total de 2 Calificaciones
Desarrollador Joseph Feld
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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
    }
}