Instant Font
Instantly switch the font of current page using Google Fonts.
O que é Instant Font?
Instant Font é uma extensão do Chrome desenvolvida por poe.422, e sua principal característica é "Instantly switch the font of current page using Google Fonts.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Instant Font
Baixe arquivos de extensão Instant Font no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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!
Informações Básicas da Extensão
Nome | |
ID | mmodigjkaccealcndhpkmleiahmickcf |
URL Oficial | https://chrome.google.com/webstore/detail/instant-font/mmodigjkaccealcndhpkmleiahmickcf |
Descrição | Instantly switch the font of current page using Google Fonts. |
Tamanho do Arquivo | 102 KB |
Contagem de Instalações | 405 |
Versão Atual | 1.1 |
Última Atualização | 2016-11-23 |
Data de Publicação | 2016-11-23 |
Classificação | 1.80/5 Total de 5 Avaliações |
Desenvolvedor | poe.422 |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |