xkcd explainer

Displays an explanation of an opened xkcd comic from the explain xkcd wiki.

Cos'è xkcd explainer?

xkcd explainer è un'estensione di Chrome sviluppata da Avadonia314, e la sua funzione principale è "Displays an explanation of an opened xkcd comic from the explain xkcd wiki.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione xkcd explainer

Scarica i file di estensione xkcd explainer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Ever confused by an xkcd comic? Left wondering about some reference in the title text?

xkcd explainer provides detailed explanations to any xkcd comic, and displays it below the image for easy access. It automatically takes explanations from the explain xkcd wiki, and parses the wiki markup into HTML.

Currently, the following formats are available:
- Headings & Subheadings
- Bold & Italics
- Bullet and sub-bullet points
- Internal links (within the explain xkcd wiki)
- Wikipedia links (defaulted to English)
- Other external links
- Quotes
- Citation needed links (links to comic #285)
- Tables
- TV Tropes links (shows warning to comic #609)
- References / Footnotes

Since these explanations are provided by people, recently uploaded comics will probably not have an explanation ready. In addition, some comics have incomplete explanations and are constantly being updated. If you would like to help the community (and other xkcd viewers), check the wiki at explainxkcd.com.                    

Informazioni di Base sull'Estensione

Nome xkcd explainer xkcd explainer
ID foejkfobkipagoaicljcokpdbdldfmdn
URL Ufficiale https://chromewebstore.google.com/detail/xkcd-explainer/foejkfobkipagoaicljcokpdbdldfmdn
Descrizione Displays an explanation of an opened xkcd comic from the explain xkcd wiki.
Dimensione del File 13.01 KB
Conteggio Installazioni 74
Versione Corrente 2.2
Ultimo Aggiornamento 2019-04-02
Data di Pubblicazione 2019-04-02
Valutazione 4.67/5 Totale 3 Valutazioni
Sviluppatore Avadonia314
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/LenKagamine/xkcd-explainer
URL della Pagina di Aiuto https://github.com/LenKagamine/xkcd-explainer/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "xkcd explainer",
    "description": "Displays an explanation of an opened xkcd comic from the explain xkcd wiki.",
    "version": "2.2",
    "author": "Michael Kim",
    "homepage_url": "https:\/\/github.com\/lenkagamine\/xkcd-explainer",
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/xkcd.com\/*",
                "https:\/\/xkcd.com\/*"
            ],
            "exclude_matches": [
                "http:\/\/xkcd.com\/archive\/",
                "https:\/\/xkcd.com\/archive\/"
            ],
            "css": [
                "explain.css"
            ],
            "js": [
                "main.js",
                "parser.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/explainxkcd.com\/*"
    ]
}