Instant Font

Instantly switch the font of current page using Google Fonts.

Vad är Instant Font?

Instant Font är en Chrome-tillägg utvecklad av poe.422, och dess huvudfunktion är "Instantly switch the font of current page using Google Fonts.".

Tilläggsskärmbilder

screenshot

Ladda ner Instant Font-förlängningens CRX-fil

Ladda ner Instant Font-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn Instant Font Instant Font
ID mmodigjkaccealcndhpkmleiahmickcf
Officiell webbadress https://chrome.google.com/webstore/detail/instant-font/mmodigjkaccealcndhpkmleiahmickcf
Beskrivning Instantly switch the font of current page using Google Fonts.
Filstorlek 102 KB
Antal Installationer 405
Aktuell Version 1.1
Senast Uppdaterad 2016-11-23
Publiceringsdatum 2016-11-23
Betyg 1.80/5 Totalt 5 Betyg
Utvecklare poe.422
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}