Fontify
This extension allows the user to change the font on the whole page.
什么是Fontify?
Fontify是由MarcCsharp开发的Chrome扩展程序,该扩展的主要功能是“This extension allows the user to change the font on the whole page.”。
下载Fontify扩展crx文件
下载Fontify扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This simple extension uses the google fonts API to give the user the ability to change the font on a page to which-ever they wish.
Simply click the extension and select your font from the drop down and see it applied to the page. 扩展基本信息
| 名称 | |
| ID | npmbploomnpbcejbghaflhmdcnjkembd |
| 官方URL | https://chromewebstore.google.com/detail/fontify/npmbploomnpbcejbghaflhmdcnjkembd |
| 简介 | This extension allows the user to change the font on the whole page. |
| 文件大小 | 5.6 KB |
| 安装次数 | 428 |
| 当前版本 | 0.0.1 |
| 更新时间 | 2018-01-24 |
| 上架时间 | 2018-01-24 |
| 评分 | 5.00/5 共3次评分 |
| 开发者 | MarcCsharp |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Fontify",
"version": "0.0.1",
"manifest_version": 2,
"description": "This extension allows the user to change the font on the whole page.",
"background": {
"scripts": [
"injectFont.js"
],
"persistent": true
},
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html",
"default_title": "Click to change font"
},
"permissions": [
"https:\/\/*\/*",
"http:\/\/*\/*",
"activeTab"
]
} | |