Random Rotation

Randomly rotates everything on every webpage you visit.

Wat is Random Rotation?

Random Rotation is een Chrome-extensie ontwikkeld door Joseph Feld, en de belangrijkste functie is "Randomly rotates everything on every webpage you visit.".

Download het CRX-bestand van de extensie Random Rotation

Download Random Rotation-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Random Rotation Random Rotation
ID dnpffiachmphafhmajpcfalbmihgdkob
Officiële URL https://chromewebstore.google.com/detail/random-rotation/dnpffiachmphafhmajpcfalbmihgdkob
Beschrijving Randomly rotates everything on every webpage you visit.
Bestandsgrootte 8.36 KB
Aantal Installaties 52
Huidige Versie 1.1
Laatst Bijgewerkt 2018-09-03
Publicatiedatum 2018-09-03
Beoordeling 4.50/5 Totaal 2 Beoordelingen
Ontwikkelaar Joseph Feld
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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
    }
}