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 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 फ़ाइल डाउनलोड करें

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

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

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