RFC Reader

Simply making RFC and manual pages easier to read.

What is RFC Reader?

RFC Reader is a Chrome extension developed by Joey L., and its main feature is "Simply making RFC and manual pages easier to read.".

Extension Screenshots

screenshot

Download RFC Reader Extension CRX File

Download RFC Reader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name RFC Reader RFC Reader
ID amfbaiboeiifomfaepaedhkjcobnneik
Official URL https://chromewebstore.google.com/detail/rfc-reader/amfbaiboeiifomfaepaedhkjcobnneik
Description Simply making RFC and manual pages easier to read.
File Size 92.31 KB
Installation Count 32
Current Version 1.0
Last Updated 2019-06-09
Publish Date 2019-06-08
Rating 5.00/5 Total 1 Ratings
Developer Joey L.
Payment Type free
Supported Languages 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"
    }
}