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文件

下载Font Changer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    ]
}