CSS Pranks

Inject random CSS within a page, that slightly messes up page design.

What is CSS Pranks?

CSS Pranks is a Chrome extension developed by Unknown, and its main feature is "Inject random CSS within a page, that slightly messes up page design.".

Extension Screenshots

screenshot

Download CSS Pranks Extension CRX File

Download CSS Pranks 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

                        Injects one random extra CSS file into page, which then slightly mess up a page (rotating logo, changing fonts, etc).

Source code - "https://github.com/aivarsliepa/css-pranks-chrome-extension"

Inspired by "https://www.youtube.com/watch?v=04zfAyPD9Tk" (Tim Holman: CSS Pranks - Lightning Talk - JSConf.Asia 2018)

Icons made by "http://www.freepik.com" from "https://www.flaticon.com/"                    

Extension Basic Information

Name CSS Pranks CSS Pranks
ID nllhmikkapodcnaoohhojjojbpjppcli
Official URL https://chromewebstore.google.com/detail/css-pranks/nllhmikkapodcnaoohhojjojbpjppcli
Description Inject random CSS within a page, that slightly messes up page design.
File Size 16.99 KB
Installation Count 708
Current Version 1.0.0
Last Updated 2018-05-27
Publish Date 2018-05-27
Rating 4.00/5 Total 6 Ratings
Developer Unknown
Payment Type free
Extension Website https://github.com/aivarsliepa/css-pranks-chrome-extension
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CSS Pranks",
    "version": "1.0.0",
    "description": "Inject random CSS within a page, that slightly messes up page design.",
    "author": "Aivars Liepa",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "68": "icons\/icon_64.png",
        "128": "icons\/icon_128.png"
    },
    "web_accessible_resources": [
        "css\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ]
}