Change Webpage Fonts

Change Webpage Fonts

Change Webpage Fontsとは何ですか?

Change Webpage FontsはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Change Webpage Fonts」です。

拡張機能のスクリーンショット

screenshot

Change Webpage Fonts拡張機能のCRXファイルをダウンロード

Change Webpage Fonts拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        If the text on the page is difficult to read or not clear enough.
You can:
1) Change the font on the page
2) Increase / decrease text size                    

拡張機能の基本情報

名前 Change Webpage Fonts Change Webpage Fonts
ID afelmehoohjbjfpjbadonkcondbilglp
公式URL https://chromewebstore.google.com/detail/change-webpage-fonts/afelmehoohjbjfpjbadonkcondbilglp
説明 Change Webpage Fonts
ファイルサイズ 31.82 KB
インストール数 2,449
現在のバージョン 0.0.1
最終更新日 2020-01-24
公開日 2020-01-19
評価 4.31/5 合計 29 レビュー
開発者 Unknown
支払い方法 free
対応言語 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Kirill Bulygin",
    "background": {
        "scripts": [
            "background\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "128": "icons\/icon_128.png"
        },
        "default_popup": "popup\/main_popup.html",
        "default_title": "Page font"
    },
    "content_scripts": [
        {
            "js": [
                "content_scripts__run_at_end.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "js": [
                "content_scripts__run_at_start.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "description": "Change Webpage Fonts",
    "icons": {
        "128": "icons\/icon_128.png"
    },
    "manifest_version": 2,
    "name": "Change Webpage Fonts",
    "permissions": [
        "storage",
        "tabs",
        "activeTab"
    ],
    "version": "0.0.1"
}