Font Changer

Find elements on the page and change their font with just few clicks.

Font Changer란 무엇입니까?

Font Changer은(는) Rafał Florczak에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Find elements on the page and change their font with just few clicks."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        You can use this extension to make the desired parts of the website look more readable by changing their fonts.                    

확장 프로그램 기본 정보

이름 Font Changer Font Changer
ID jokhgliahkldheenecgebcldmdcccocp
공식 URL https://chromewebstore.google.com/detail/font-changer/jokhgliahkldheenecgebcldmdcccocp
설명 Find elements on the page and change their font with just few clicks.
파일 크기 182 KB
설치 횟수 357
현재 버전 0.3.3
최근 업데이트 2022-04-13
출시 날짜 2019-03-21
평점 1.00/5 총 2 개의 평점
개발자 Rafał Florczak
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/florczakraf/font-changer
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Font Changer",
    "version": "0.3.3",
    "description": "Find elements on the page and change their font with just few clicks.",
    "icons": {
        "64": "font-changer\/icons\/64.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "font-changer\/content-script\/font-changer.js"
            ],
            "css": [
                "font-changer\/content-script\/font-changer.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "font-changer\/icons\/64.png",
        "default_title": "Font Changer"
    },
    "background": {
        "scripts": [
            "font-changer\/background\/background.js"
        ]
    },
    "permissions": [
        "activeTab"
    ]
}