Fontify

This extension allows the user to change the font on the whole page.

Fontify là gì?

Fontify là một tiện ích mở rộng Chrome được phát triển bởi MarcCsharp, và tính năng chính của nó là "This extension allows the user to change the font on the whole page.".

Tải xuống tệp CRX của tiện ích mở rộng Fontify

Tải xuống các tệp mở rộng Fontify dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This simple extension uses the google fonts API to give the user the ability to change the font on a page to which-ever they wish.

Simply click the extension and select your font from the drop down and see it applied to the page.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Fontify Fontify
ID npmbploomnpbcejbghaflhmdcnjkembd
URL Chính Thức https://chromewebstore.google.com/detail/fontify/npmbploomnpbcejbghaflhmdcnjkembd
Mô tả This extension allows the user to change the font on the whole page.
Kích Thước Tệp 5.6 KB
Số Lần Cài Đặt 428
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2018-01-24
Ngày Phát Hành 2018-01-24
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển MarcCsharp
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fontify",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "This extension allows the user to change the font on the whole page.",
    "background": {
        "scripts": [
            "injectFont.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Click to change font"
    },
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "activeTab"
    ]
}