Re-Font

Allows customization of fonts on websites.

什麼是Re-Font?

Re-Font是由Re-Font開發的Chrome擴展程式,該擴展的主要功能是“Allows customization of fonts on websites.”。

擴展截圖

screenshot
screenshot
screenshot

下載Re-Font擴展crx文件

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

擴展使用說明

                        Re-Font lets you change the font, size and color of text on any webpage. Use it to meet your style needs, or simply to make text easier to read. You can even randomize the color and size to spice things up! It's easy, fast and works right in the corner of your browser. Download Re-Font today!

Add your own custom fonts by clicking "Add Font" in the font selector. You can type in your own font or even add a link to one on the internet (Google fonts work best!) if it's not installed on your computer.

Create bookmarklets with your styles to send to friends, regardless of whether they have Re-Font installed.

Note from developer: I am a student and made this for fun. If you find any bugs feel free to let me know or contribute to the code on GitHub. Any support is much appreciated!

Github: https://github.com/brayden-gg/Re-Font
Donations: https://ko-fi.com/braydengg                    

擴展基本資訊

名稱 Re-Font Re-Font
ID jeggnpdlnbocmdalbikmfpokecfnicni
官方網址 https://chromewebstore.google.com/detail/re-font/jeggnpdlnbocmdalbikmfpokecfnicni
簡介 Allows customization of fonts on websites.
檔案大小 26.8 KB
安裝次數 808
目前版本 2.0.0
更新時間 2023-08-25
上架時間 2019-08-28
評分 3.36/5 共 14 次評分
開發者 Re-Font
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Re-Font",
    "version": "2.0.0",
    "description": "Allows customization of fonts on websites.",
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_icon": "ReFont128.png",
        "default_popup": "popup.html",
        "default_title": "Customize"
    },
    "icons": {
        "16": "ReFont16.png",
        "32": "ReFont32.png",
        "48": "ReFont48.png",
        "128": "ReFont128.png"
    }
}