XKCD New Tab

Every new tab is an XKCD comic!

Qu'est-ce que XKCD New Tab ?

XKCD New Tab est une extension Chrome développée par quiche19, et sa fonction principale est "Every new tab is an XKCD comic!".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension XKCD New Tab

Téléchargez les fichiers d'extension XKCD New Tab au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Override the new tab page with an XKCD comic.

Displays the a random XKCD comic on the new tab page instead of the original content provided by Chrome.

Contains the title, comic, and hovertext written plainly for easy viewing and enjoyment. 

All comics are sourced from http://xkcd.com/                    

Informations de Base sur l'Extension

Nom XKCD New Tab XKCD New Tab
ID kbndmginnhajgnjcncdepimedpgielff
URL Officiel https://chromewebstore.google.com/detail/xkcd-new-tab/kbndmginnhajgnjcncdepimedpgielff
Description Every new tab is an XKCD comic!
Taille du Fichier 3.88 KB
Nombre d'Installations 69
Version Actuelle 1.0
Dernière Mise à Jour 2021-08-03
Date de Publication 2019-08-06
Évaluation 4.00/5 Total 1 Évaluations
Développeur quiche19
Email [email protected]
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "XKCD New Tab",
    "description": "Every new tab is an XKCD comic!",
    "version": "1.0",
    "incognito": "split",
    "permissions": [
        "https:\/\/xkcd.com\/*"
    ],
    "chrome_url_overrides": {
        "newtab": "xkcd.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}