Revert StackExchange Formatting

Brings back the old line height, fonts, colors, etc. on StackExchange websites like StackOverflow.

Revert StackExchange Formatting란 무엇입니까?

Revert StackExchange Formatting은(는) pridify13에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Brings back the old line height, fonts, colors, etc. on StackExchange websites like StackOverflow."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Revert StackExchange Formatting 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        UPDATE (May 22, 2020): added support for reverting fonts!

On August 27, 2020, StackOverflow websites like ServerFault, AskUbuntu, SuperUser, etc. made new formatting changes that were unnecessary imho. Use this extension if you want back the old compact line height, paragraph spacing, old fonts (Arial, Consolas) and other formattings (colors, borders, padding, etc.), on StackExchange websites.

INSTRUCTIONS: click on extension icon (top-right) to see Options.

Customizable:
- Only revert line-height
- Choose custom line-height value
- Revert to old paragraph spacing
- Enable additional reversions (background-colors, border-radius, padding, etc.)
- Revert Fonts (back to Arial and Consolas)
- Change blockquote styling (darker text, yellow background)
- Disable extension with one click

Contribute:
- GitHub repo: https://github.com/Prid13/Revert-StackExchange-Formatting

Donate:
- ko-fi.com/prid13                    

확장 프로그램 기본 정보

이름 Revert StackExchange Formatting Revert StackExchange Formatting
ID fliedkodjpgomjmjbkaehhlllnhmcjnh
공식 URL https://chrome.google.com/webstore/detail/revert-stackexchange-form/fliedkodjpgomjmjbkaehhlllnhmcjnh
설명 Brings back the old line height, fonts, colors, etc. on StackExchange websites like StackOverflow.
파일 크기 17.97 KB
설치 횟수 33
현재 버전 0.9.5
최근 업데이트 2021-05-22
출시 날짜 2020-08-28
평점 5.00/5 총 1 개의 평점
개발자 pridify13
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Prid13/Revert-StackExchange-Formatting
도움말 페이지 URL https://github.com/Prid13/Revert-StackExchange-Formatting
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Revert StackExchange Formatting",
    "version": "0.9.5",
    "manifest_version": 2,
    "homepage_url": "https:\/\/github.com\/Prid13\/Revert-StackExchange-Formatting",
    "description": "Brings back the old line height, fonts, colors, etc. on StackExchange websites like StackOverflow.",
    "icons": {
        "16": "icons\/favicon-16x16.png",
        "32": "icons\/favicon-32x32.png",
        "48": "icons\/favicon-48x48.png",
        "128": "icons\/favicon-128x128.png"
    },
    "browser_action": {
        "default_icon": "icons\/favicon-19x19.png",
        "default_title": "StackExchange - Custom Formatting",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.stackoverflow.com\/*",
                "*:\/\/*.serverfault.com\/*",
                "*:\/\/*.superuser.com\/*",
                "*:\/\/*.stackexchange.com\/*",
                "*:\/\/*.askubuntu.com\/*",
                "*:\/\/*.stackapps.com\/*",
                "*:\/\/*.mathoverflow.net\/*"
            ],
            "run_at": "document_start",
            "js": [
                "src\/inject\/custom_css.js"
            ]
        }
    ]
}