npFixit

Font Fix Extension.

Wat is npFixit?

npFixit is een Chrome-extensie ontwikkeld door netplan_jp, en de belangrijkste functie is "Font Fix Extension.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie npFixit

Download npFixit-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

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

Basisinformatie over de Extensie

Naam npFixit npFixit
ID afcakpmpcmhdijgonehmhlbmcfndopdo
Officiële URL https://chromewebstore.google.com/detail/npfixit/afcakpmpcmhdijgonehmhlbmcfndopdo
Beschrijving Font Fix Extension.
Bestandsgrootte 30.79 KB
Aantal Installaties 203
Huidige Versie 1.1.0
Laatst Bijgewerkt 2012-07-04
Publicatiedatum 2012-07-04
Beoordeling 3.00/5 Totaal 2 Beoordelingen
Ontwikkelaar netplan_jp
Betalingswijze free
Ondersteunde Talen 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
        }
    ]
}