Font Overwrite

Overwrites fonts of web-sites.

什麼是Font Overwrite?

Font Overwrite是由minostar開發的Chrome擴展程式,該擴展的主要功能是“Overwrites fonts of web-sites.”。

擴展截圖

screenshot

下載Font Overwrite擴展crx文件

下載Font Overwrite擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        If you dislike specific font, use this.
(ex. Gulim, Comic Sans)                    

擴展基本資訊

名稱 Font Overwrite Font Overwrite
ID efnhmidkajhnpdgfdpfnioiibmdjnkmn
官方網址 https://chromewebstore.google.com/detail/font-overwrite/efnhmidkajhnpdgfdpfnioiibmdjnkmn
簡介 Overwrites fonts of web-sites.
檔案大小 47.6 KB
安裝次數 605
目前版本 0.0.2
更新時間 2017-10-14
上架時間 2017-10-14
評分 4.33/5 共 27 次評分
開發者 minostar
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Font Overwrite",
    "description": "Overwrites fonts of web-sites.",
    "version": "0.0.2",
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "browser_action": {
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "exclude_globs": [],
            "include_globs": [
                "*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}