Instant Font
Instantly switch the font of current page using Google Fonts.
什么是Instant Font?
Instant Font是由poe.422开发的Chrome扩展程序,该扩展的主要功能是“Instantly switch the font of current page using Google Fonts.”。
扩展截图
下载Instant Font扩展crx文件
下载Instant Font扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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!
扩展基本信息
名称 | |
ID | mmodigjkaccealcndhpkmleiahmickcf |
官方URL | https://chrome.google.com/webstore/detail/instant-font/mmodigjkaccealcndhpkmleiahmickcf |
简介 | Instantly switch the font of current page using Google Fonts. |
文件大小 | 102 KB |
安装次数 | 405 |
当前版本 | 1.1 |
更新时间 | 2016-11-23 |
上架时间 | 2016-11-23 |
评分 | 1.80/5 共5次评分 |
开发者 | poe.422 |
付费类型 | free |
支持的语言 | 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" ] } ] } |