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