Re-Font

Allows customization of fonts on websites.

Re-Font क्या है?

Re-Font Re-Font द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows customization of fonts on websites."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Re-Font एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    }
}