npFixit

Font Fix Extension.

What is npFixit?

npFixit is a Chrome extension developed by netplan_jp, and its main feature is "Font Fix Extension.".

Extension Screenshots

screenshot

Download npFixit Extension CRX File

Download npFixit extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        コンテンツのフォントを "メイリオ" に固定する機能拡張です。
コンテンツの文字化け対策として同様の機能拡張が紹介されていたので、それをヒントにフォントサイズ、フォントカラー、バックグラウンドカラーを設定できるようにしてみました。
例えば文字色を「白」、背景色を「黒」に設定して、どのページもハイコントラスト表示にすることができます。

[2012.07.04]
Chrome機能拡張(Manifest Version 2)に対応しました。
本機能の有効(Enable)・無効(Disable)をオプションに追加しました。
色選択のライブラリをjscolorに変更しました。                    

Extension Basic Information

Name npFixit npFixit
ID afcakpmpcmhdijgonehmhlbmcfndopdo
Official URL https://chromewebstore.google.com/detail/npfixit/afcakpmpcmhdijgonehmhlbmcfndopdo
Description Font Fix Extension.
File Size 30.79 KB
Installation Count 203
Current Version 1.1.0
Last Updated 2012-07-04
Publish Date 2012-07-04
Rating 3.00/5 Total 2 Ratings
Developer netplan_jp
Payment Type free
Supported Languages ja
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "npFixit",
    "version": "1.1.0",
    "manifest_version": 2,
    "description": "Font Fix Extension.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "popup": "popup.html"
    },
    "options_page": "popup.html",
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "npFixit.js"
            ],
            "all_frames": true
        }
    ]
}