Webfont Previewer

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

Was ist Webfont Previewer?

Webfont Previewer ist eine Chrome-Erweiterung, die von JustinTheClouds entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to test webfonts out on any website and target which elements the fonts should be applied to.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Webfont Previewer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Webfont Previewer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Webfont Previewer Webfont Previewer
ID ehmpabgeehikhdodemjoenbonjkdeopn
Offizielle URL https://chromewebstore.google.com/detail/webfont-previewer/ehmpabgeehikhdodemjoenbonjkdeopn
Beschreibung This extension allows you to test webfonts out on any website and target which elements the fonts should be applied to.
Dateigröße 607 KB
Installationsanzahl 714
Aktuelle Version 1.2
Letztes Update 2013-09-26
Veröffentlichungsdatum 2013-09-25
Bewertung 3.29/5 Insgesamt 7 Bewertungen
Entwickler JustinTheClouds
Zahlungsart free
Erweiterungswebsite http://justintheclouds.com
Unterstützte Sprachen 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"
    }
}