Oldskoolizer

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

Oldskoolizer란 무엇입니까?

Oldskoolizer은(는) https://kassoulet.free.fr에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browsing... 8 bits at a time. Transform web pages into a wanabee-8 bits version."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Oldskoolizer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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,                    

확장 프로그램 기본 정보

이름 Oldskoolizer Oldskoolizer
ID dlloichpnmecnikbmhleniagdmmopiba
공식 URL https://chromewebstore.google.com/detail/oldskoolizer/dlloichpnmecnikbmhleniagdmmopiba
설명 Browsing... 8 bits at a time. Transform web pages into a wanabee-8 bits version.
파일 크기 41.26 KB
설치 횟수 370
현재 버전 0.1.2
최근 업데이트 2016-11-15
출시 날짜 2016-11-15
평점 4.44/5 총 9 개의 평점
개발자 https://kassoulet.free.fr
결제 유형 free
지원되는 언어 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"
    ]
}