Oldskoolizer

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

Cos'è Oldskoolizer?

Oldskoolizer è un'estensione di Chrome sviluppata da https://kassoulet.free.fr, e la sua funzione principale è "Browsing... 8 bits at a time. Transform web pages into a wanabee-8 bits version.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Oldskoolizer

Scarica i file di estensione Oldskoolizer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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,                    

Informazioni di Base sull'Estensione

Nome Oldskoolizer Oldskoolizer
ID dlloichpnmecnikbmhleniagdmmopiba
URL Ufficiale https://chromewebstore.google.com/detail/oldskoolizer/dlloichpnmecnikbmhleniagdmmopiba
Descrizione Browsing... 8 bits at a time. Transform web pages into a wanabee-8 bits version.
Dimensione del File 41.26 KB
Conteggio Installazioni 370
Versione Corrente 0.1.2
Ultimo Aggiornamento 2016-11-15
Data di Pubblicazione 2016-11-15
Valutazione 4.44/5 Totale 9 Valutazioni
Sviluppatore https://kassoulet.free.fr
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}