Instant Font
Instantly switch the font of current page using Google Fonts.
Hvad er Instant Font?
Instant Font er en Chrome-udvidelse udviklet af poe.422, og dens hovedfunktion er "Instantly switch the font of current page using Google Fonts.".
Udvidelsesskærmbilleder
Download Instant Font-udvidelses-CRX-fil
Download Instant Font-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | |
ID | mmodigjkaccealcndhpkmleiahmickcf |
Officiel URL | https://chrome.google.com/webstore/detail/instant-font/mmodigjkaccealcndhpkmleiahmickcf |
Beskrivelse | Instantly switch the font of current page using Google Fonts. |
Filstørrelse | 102 KB |
Antal Installationer | 405 |
Nuværende Version | 1.1 |
Senest Opdateret | 2016-11-23 |
Udgivelsesdato | 2016-11-23 |
Bedømmelse | 1.80/5 Samlet 5 Bedømmelser |
Udvikler | poe.422 |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } ] } |