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คืออะไร?

Webfont Previewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย JustinTheClouds และคุณลักษณะหลักของมันคือ "This extension allows you to test webfonts out on any website and target which elements the fonts should be applied to."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Webfont Previewer

ดาวน์โหลดไฟล์ส่วนขยาย Webfont Previewer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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**                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Webfont Previewer Webfont Previewer
ID ehmpabgeehikhdodemjoenbonjkdeopn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/webfont-previewer/ehmpabgeehikhdodemjoenbonjkdeopn
คำอธิบาย This extension allows you to test webfonts out on any website and target which elements the fonts should be applied to.
ขนาดไฟล์ 607 KB
จำนวนการติดตั้ง 714
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2013-09-26
วันที่เผยแพร่ 2013-09-25
คะแนน 3.29/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา JustinTheClouds
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://justintheclouds.com
ภาษาที่รองรับ 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"
    }
}