System Font Everywhere

Use system font on the web

System Font Everywhere란 무엇입니까?

System Font Everywhere은(는) S.J. Zhang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use system font on the web"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

System Font Everywhere 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Use this extension to apply System Fonts to the internet. Use San Francisco on macOS and Segoe UI on Windows 10 for the best legibility when you need to read, or on other sites with unfavorable font choices.                    

확장 프로그램 기본 정보

이름 System Font Everywhere System Font Everywhere
ID dcncgmembfephfbibnnigchndgncmdnj
공식 URL https://chromewebstore.google.com/detail/system-font-everywhere/dcncgmembfephfbibnnigchndgncmdnj
설명 Use system font on the web
파일 크기 644 KB
설치 횟수 317
현재 버전 0.0.3
최근 업데이트 2022-12-12
출시 날짜 2020-03-06
평점 2.60/5 총 5 개의 평점
개발자 S.J. Zhang
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://sj.land
도움말 페이지 URL https://sj.land
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "System Font Everywhere",
    "short_name": "SF Everywhere",
    "version": "0.0.3",
    "description": "Use system font on the web",
    "action": {
        "default_title": "System Font Everywhere",
        "default_icon": "off-icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "match_about_blank": true,
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "exclude_globs": [
                "*\/chrome\/newtab*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "host_permissions": [
        ""
    ],
    "icons": {
        "128": "128.png"
    }
}