StackOverflow that 90's Theme

Add unnecessary clutter to give that 90's feeling to StackOverflow

StackOverflow that 90's Theme란 무엇입니까?

StackOverflow that 90's Theme은(는) Alexander에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add unnecessary clutter to give that 90's feeling to StackOverflow"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

StackOverflow that 90's Theme 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Chrome extension to modify StackOverflow.com theme and some other stackexchange sites to the 2019 April fools theme.

Based on https://stackapps.com/questions/8287/2019-april-fools-day-retro-theme

Source code:
https://github.com/Alexrgs/Retro_StackOverflow

Special Thanks/Credits

https://github.com/a-stone-arachnid/Time-Travel-Mode

https://github.com/tholman/90s-cursor-effects

Icons made by freepik                    

확장 프로그램 기본 정보

이름 StackOverflow that 90's Theme StackOverflow that 90's Theme
ID dhljglinknmoehnmefabbgcimlknopba
공식 URL https://chromewebstore.google.com/detail/stackoverflow-that-90s-th/dhljglinknmoehnmefabbgcimlknopba
설명 Add unnecessary clutter to give that 90's feeling to StackOverflow
파일 크기 87.04 KB
설치 횟수 30
현재 버전 1.0.0
최근 업데이트 2021-01-18
출시 날짜 2021-01-18
평점 5.00/5 총 1 개의 평점
개발자 Alexander
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "StackOverflow that 90's Theme",
    "version": "1.0.0",
    "icons": {
        "512": "party.png"
    },
    "description": "Add unnecessary clutter to give that 90's feeling to StackOverflow",
    "content_scripts": [
        {
            "js": [
                "jquery-3.5.1.min.js",
                "fairyDustCursor.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "matches": [
                "https:\/\/*.stackoverflow.com\/",
                "https:\/\/*.stackoverflow.com\/questions\/*",
                "https:\/\/*.stackoverflow.com\/questions?*",
                "https:\/\/*.stackoverflow.com\/tags\/*",
                "https:\/\/*.stackoverflow.com\/users\/*",
                "https:\/\/*.stackoverflow.com\/unanswered\/*",
                "https:\/\/*.askubuntu.com\/questions\/*",
                "https:\/\/*.serverfault.com\/questions\/*",
                "https:\/\/*.superuser.com\/questions\/*",
                "https:\/\/*.stackapps.com\/questions\/*",
                "https:\/\/*.mathoverflow.net\/questions\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [],
    "browser_action": {
        "default_name": "StackOverflow 90's Theme",
        "default_icon": "party.png"
    }
}