Oldskoolizer

Browsing... 8 bits at a time. Transform web pages into a wanabee-8 bits version.

What is Oldskoolizer?

Oldskoolizer is a Chrome extension developed by https://kassoulet.free.fr, and its main feature is "Browsing... 8 bits at a time. Transform web pages into a wanabee-8 bits version.".

Extension Screenshots

screenshot
screenshot

Download Oldskoolizer Extension CRX File

Download Oldskoolizer 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 is an experimental 8-bit transformation for Chrome.

What is supported:
 - Change all fonts by something more Commodore-64-ish.
 - Pixelize images.
 - Reduce colors by using C64 16 colors palette.
 - Add full-page scanlines overlay.

What is broken:
 - font is ascii -only, foreign languages are unsupported for now.
 - html content is changed once after loading. So no pixelization if images change. dynamically,                    

Extension Basic Information

Name Oldskoolizer Oldskoolizer
ID dlloichpnmecnikbmhleniagdmmopiba
Official URL https://chromewebstore.google.com/detail/oldskoolizer/dlloichpnmecnikbmhleniagdmmopiba
Description Browsing... 8 bits at a time. Transform web pages into a wanabee-8 bits version.
File Size 41.26 KB
Installation Count 370
Current Version 0.1.2
Last Updated 2016-11-15
Publish Date 2016-11-15
Rating 4.44/5 Total 9 Ratings
Developer https://kassoulet.free.fr
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Oldskoolizer",
    "version": "0.1.2",
    "description": "Browsing... 8 bits at a time.\nTransform web pages into a wanabee-8 bits version.",
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "nearestColor.js",
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "icons\/oldskoolizer-16.png",
        "32": "icons\/oldskoolizer-32.png",
        "48": "icons\/oldskoolizer-48.png",
        "128": "icons\/oldskoolizer-128.png"
    },
    "web_accessible_resources": [
        "*.ttf",
        "*.png"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "storage"
    ]
}