XKCD Alt Text

The XKCD Alt Text extension makes it slightly easier to read the XKCD web comic. It's primary function is to add a description…

Vad är XKCD Alt Text?

XKCD Alt Text är en Chrome-tillägg utvecklad av James Kwan, och dess huvudfunktion är "The XKCD Alt Text extension makes it slightly easier to read the XKCD web comic. It's primary function is to add a description…".

Tilläggsskärmbilder

screenshot

Ladda ner XKCD Alt Text-förlängningens CRX-fil

Ladda ner XKCD Alt Text-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        The XKCD Alt Text extension makes it slightly easier to read the XKCD web comic. It's primary function is to add a description beneath the comic, so that you don't have to try and read the tiny hover text before it fades away. It can also move the header below the comic, to increase visibility. This feature can easily be disabled. Update 2.8.1: Works over HTTPS                    

Grundläggande Information om Tillägg

Namn XKCD Alt Text XKCD Alt Text
ID gncnccgkhldnjnmhlmgcghhgbckeobph
Officiell webbadress https://chromewebstore.google.com/detail/xkcd-alt-text/gncnccgkhldnjnmhlmgcghhgbckeobph
Beskrivning The XKCD Alt Text extension makes it slightly easier to read the XKCD web comic. It's primary function is to add a description…
Filstorlek 57.64 KB
Antal Installationer 736
Aktuell Version 2.8.1
Senast Uppdaterad 2014-01-27
Publiceringsdatum 2014-01-26
Betyg 4.06/5 Totalt 17 Betyg
Utvecklare James Kwan
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "xkcdalt.js"
            ],
            "matches": [
                "*:\/\/xkcd.com\/*",
                "*:\/\/xkcd.org\/*",
                "*:\/\/xkcd.net\/*",
                "*:\/\/www.xkcd.com\/*",
                "*:\/\/www.xkcd.org\/*",
                "*:\/\/www.xkcd.net\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "options.html",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "name": "XKCD Alt Text",
    "version": "2.8.1"
}