Random Rotation

Randomly rotates everything on every webpage you visit.

What is Random Rotation?

Random Rotation is a Chrome extension developed by Joseph Feld, and its main feature is "Randomly rotates everything on every webpage you visit.".

Download Random Rotation Extension CRX File

Download Random Rotation extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Random Rotation Random Rotation
ID dnpffiachmphafhmajpcfalbmihgdkob
Official URL https://chromewebstore.google.com/detail/random-rotation/dnpffiachmphafhmajpcfalbmihgdkob
Description Randomly rotates everything on every webpage you visit.
File Size 8.36 KB
Installation Count 52
Current Version 1.1
Last Updated 2018-09-03
Publish Date 2018-09-03
Rating 4.50/5 Total 2 Ratings
Developer Joseph Feld
Email [email protected]
Payment Type free
Supported Languages 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
    }
}