Instant Font
Instantly switch the font of current page using Google Fonts.
Qu'est-ce que Instant Font ?
Instant Font est une extension Chrome développée par poe.422, et sa fonction principale est "Instantly switch the font of current page using Google Fonts.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Instant Font
Téléchargez les fichiers d'extension Instant Font au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | |
ID | mmodigjkaccealcndhpkmleiahmickcf |
URL Officiel | https://chrome.google.com/webstore/detail/instant-font/mmodigjkaccealcndhpkmleiahmickcf |
Description | Instantly switch the font of current page using Google Fonts. |
Taille du Fichier | 102 KB |
Nombre d'Installations | 405 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2016-11-23 |
Date de Publication | 2016-11-23 |
Évaluation | 1.80/5 Total 5 Évaluations |
Développeur | poe.422 |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |