Random Rotation

Randomly rotates everything on every webpage you visit.

Vad är Random Rotation?

Random Rotation är en Chrome-tillägg utvecklad av Joseph Feld, och dess huvudfunktion är "Randomly rotates everything on every webpage you visit.".

Ladda ner Random Rotation-förlängningens CRX-fil

Ladda ner Random Rotation-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Random Rotation Random Rotation
ID dnpffiachmphafhmajpcfalbmihgdkob
Officiell webbadress https://chromewebstore.google.com/detail/random-rotation/dnpffiachmphafhmajpcfalbmihgdkob
Beskrivning Randomly rotates everything on every webpage you visit.
Filstorlek 8.36 KB
Antal Installationer 52
Aktuell Version 1.1
Senast Uppdaterad 2018-09-03
Publiceringsdatum 2018-09-03
Betyg 4.50/5 Totalt 2 Betyg
Utvecklare Joseph Feld
E-post [email protected]
Betalningssätt free
Stödda Språk 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
    }
}