Re-Font

Allows customization of fonts on websites.

Re-Fontคืออะไร?

Re-Font เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Re-Font และคุณลักษณะหลักของมันคือ "Allows customization of fonts on websites."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Re-Font

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
    }
}