RFC Reader

Simply making RFC and manual pages easier to read.

Co to jest RFC Reader?

RFC Reader to rozszerzenie Chrome opracowane przez Joey L., a jego główną funkcją jest „Simply making RFC and manual pages easier to read.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia RFC Reader

Pobierz pliki rozszerzeń RFC Reader w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa RFC Reader RFC Reader
ID amfbaiboeiifomfaepaedhkjcobnneik
Oficjalny URL https://chromewebstore.google.com/detail/rfc-reader/amfbaiboeiifomfaepaedhkjcobnneik
Opis Simply making RFC and manual pages easier to read.
Rozmiar pliku 92.31 KB
Liczba instalacji 32
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2019-06-09
Data Publikacji 2019-06-08
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Joey L.
Typ Płatności free
Obsługiwane Języki 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"
    }
}