Instant Font

Instantly switch the font of current page using Google Fonts.

Was ist Instant Font?

Instant Font ist eine Chrome-Erweiterung, die von poe.422 entwickelt wurde, und ihr Hauptmerkmal ist "Instantly switch the font of current page using Google Fonts.".

Erweiterungsscreenshots

screenshot

Instant Font-Erweiterungs-CRX-Datei herunterladen

Laden Sie Instant Font-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

                        You can instantly switch current page's font to Google Fonts' web font.
Also, you can input CSS selector to specify element where you want to apply font.

Instant Font gonna help your web design/development work flow!                    

Grundlegende Informationen zur Erweiterung

Name Instant Font Instant Font
ID mmodigjkaccealcndhpkmleiahmickcf
Offizielle URL https://chrome.google.com/webstore/detail/instant-font/mmodigjkaccealcndhpkmleiahmickcf
Beschreibung Instantly switch the font of current page using Google Fonts.
Dateigröße 102 KB
Installationsanzahl 405
Aktuelle Version 1.1
Letztes Update 2016-11-23
Veröffentlichungsdatum 2016-11-23
Bewertung 1.80/5 Insgesamt 5 Bewertungen
Entwickler poe.422
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Instant Font",
    "version": "1.1",
    "permissions": [
        "tabs"
    ],
    "description": "Instantly switch the font of current page using Google Fonts.",
    "icons": {
        "128": "images\/icon128.png"
    },
    "author": "Masahiro Harada",
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "Instant Font",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/lib\/webfont.js",
                "js\/build\/content_scripts.js"
            ]
        }
    ]
}