Font Fixer

Changes all the fonts on your web pages so they're readable

什么是Font Fixer?

Font Fixer是由HMH Technology Labs开发的Chrome扩展程序,该扩展的主要功能是“Changes all the fonts on your web pages so they're readable”。

下载Font Fixer扩展crx文件

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

扩展使用说明

                                            

扩展基本信息

名称 Font Fixer Font Fixer
ID lnfpnnigpfkkimhgdmoodbfojnipgdjj
官方URL https://chromewebstore.google.com/detail/font-fixer/lnfpnnigpfkkimhgdmoodbfojnipgdjj
简介 Changes all the fonts on your web pages so they're readable
文件大小 41.06 KB
安装次数 29
当前版本 1
更新时间 2016-04-17
上架时间 2016-04-17
评分 5.00/5 共2次评分
开发者 HMH Technology Labs
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Font Fixer",
    "version": "1",
    "manifest_version": 2,
    "description": "Changes all the fonts on your web pages so they're readable",
    "homepage_url": "http:\/\/students.cse.tamu.edu\/habeebh\/",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "page action demo"
    },
    "permissions": [
        "tabs",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}