RFC Reader
Simply making RFC and manual pages easier to read.
什么是RFC Reader?
RFC Reader是由Joey L.开发的Chrome扩展程序,该扩展的主要功能是“Simply making RFC and manual pages easier to read.”。
扩展截图
下载RFC Reader扩展crx文件
下载RFC Reader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Beautifies Internet Engineering Task Force (IETF) Request For Comments (RFCs) by applying a little TLC to the CSS.
Install this extension to automatically enhance IETF RFC pages. 扩展基本信息
| 名称 | |
| ID | amfbaiboeiifomfaepaedhkjcobnneik |
| 官方URL | https://chromewebstore.google.com/detail/rfc-reader/amfbaiboeiifomfaepaedhkjcobnneik |
| 简介 | Simply making RFC and manual pages easier to read. |
| 文件大小 | 92.31 KB |
| 安装次数 | 32 |
| 当前版本 | 1.0 |
| 更新时间 | 2019-06-09 |
| 上架时间 | 2019-06-08 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | Joey L. |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "RFC Reader",
"version": "1.0",
"description": "Simply making RFC and manual pages easier to read.",
"manifest_version": 2,
"permissions": [
"activeTab"
],
"content_scripts": [
{
"matches": [
"https:\/\/tools.ietf.org\/html\/*"
],
"css": [
"style_ietf.css"
]
},
{
"matches": [
"*:\/\/man7.org\/linux\/man-pages\/man*\/*.html"
],
"css": [
"style_man.css"
]
}
],
"icons": {
"16": "icon_16.png",
"32": "icon_16.png",
"48": "icon_16.png",
"128": "icon_16.png"
}
} | |