Webfont Previewer

This extension allows you to test webfonts out on any website and target which elements the fonts should be applied to.

Webfont Previewer là gì?

Webfont Previewer là một tiện ích mở rộng Chrome được phát triển bởi JustinTheClouds, và tính năng chính của nó là "This extension allows you to test webfonts out on any website and target which elements the fonts should be applied to.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Webfont Previewer 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

                        Quickly test and preview out different web fonts while developing your websites.

Select a webfont from the list of fonts. Then choose the page's targets using CSS selectors. Then apply to see the webfont applied to current page's content.

Star your favorite webfonts to make them appear at the top of the list of fonts for quick use. Once you have the font you like, press the code "" button to copy the code to paste into your site's HTML for use.

**Once installed, any previously opened tabs must be refreshed to work properly**                    

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

Tên Webfont Previewer Webfont Previewer
ID ehmpabgeehikhdodemjoenbonjkdeopn
URL Chính Thức https://chromewebstore.google.com/detail/webfont-previewer/ehmpabgeehikhdodemjoenbonjkdeopn
Mô tả This extension allows you to test webfonts out on any website and target which elements the fonts should be applied to.
Kích Thước Tệp 607 KB
Số Lần Cài Đặt 714
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2013-09-26
Ngày Phát Hành 2013-09-25
Đánh Giá 3.29/5 Tổng số 7 Đánh Giá
Nhà Phát Triển JustinTheClouds
Loại Thanh Toán free
Trang Web Mở Rộng http://justintheclouds.com
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Webfont Previewer",
    "description": "This extension allows you to test webfonts out on any website and target which elements the fonts should be applied to.",
    "version": "1.2",
    "icons": {
        "16": "icon.png",
        "48": "icon-48.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js",
                "content_scripts.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "jquery-2.0.3.min.map",
        "webfont.js",
        "fontmap.json"
    ],
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/fonts.googleapis.com\/*",
        "https:\/\/googlefontdirectory.googlecode.com\/hg\/ofl\/*"
    ],
    "browser_action": {
        "default_icon": {
            "19": "icon.png",
            "38": "icon.png",
            "48": "icon.png"
        },
        "default_popup": "popup.html"
    }
}