Instant Font
Instantly switch the font of current page using Google Fonts.
Cos'è Instant Font?
Instant Font è un'estensione di Chrome sviluppata da poe.422, e la sua funzione principale è "Instantly switch the font of current page using Google Fonts.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Instant Font
Scarica i file di estensione Instant Font in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | |
ID | mmodigjkaccealcndhpkmleiahmickcf |
URL Ufficiale | https://chrome.google.com/webstore/detail/instant-font/mmodigjkaccealcndhpkmleiahmickcf |
Descrizione | Instantly switch the font of current page using Google Fonts. |
Dimensione del File | 102 KB |
Conteggio Installazioni | 405 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2016-11-23 |
Data di Pubblicazione | 2016-11-23 |
Valutazione | 1.80/5 Totale 5 Valutazioni |
Sviluppatore | poe.422 |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |