Oldskoolizer

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

Co to jest Oldskoolizer?

Oldskoolizer to rozszerzenie Chrome opracowane przez https://kassoulet.free.fr, a jego główną funkcją jest „Browsing... 8 bits at a time. Transform web pages into a wanabee-8 bits version.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Oldskoolizer

Pobierz pliki rozszerzeń Oldskoolizer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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,                    

Podstawowe informacje o rozszerzeniu

Nazwa Oldskoolizer Oldskoolizer
ID dlloichpnmecnikbmhleniagdmmopiba
Oficjalny URL https://chromewebstore.google.com/detail/oldskoolizer/dlloichpnmecnikbmhleniagdmmopiba
Opis Browsing... 8 bits at a time. Transform web pages into a wanabee-8 bits version.
Rozmiar pliku 41.26 KB
Liczba instalacji 370
Aktualna Wersja 0.1.2
Ostatnia Aktualizacja 2016-11-15
Data Publikacji 2016-11-15
Ocena 4.44/5 Łącznie 9 Oceny
Deweloper https://kassoulet.free.fr
Typ Płatności free
Obsługiwane Języki 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"
    ]
}