XKCD New Tab

Every new tab is an XKCD comic!

XKCD New Tabとは何ですか?

XKCD New Tabはquiche19によって開発されたChromeの拡張機能で、その主な機能は「Every new tab is an XKCD comic!」です。

拡張機能のスクリーンショット

screenshot

XKCD New Tab拡張機能のCRXファイルをダウンロード

XKCD New Tab拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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/                    

拡張機能の基本情報

名前 XKCD New Tab XKCD New Tab
ID kbndmginnhajgnjcncdepimedpgielff
公式URL https://chromewebstore.google.com/detail/xkcd-new-tab/kbndmginnhajgnjcncdepimedpgielff
説明 Every new tab is an XKCD comic!
ファイルサイズ 3.88 KB
インストール数 69
現在のバージョン 1.0
最終更新日 2021-08-03
公開日 2019-08-06
評価 4.00/5 合計 1 レビュー
開発者 quiche19
Eメール [email protected]
支払い方法 free
対応言語 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"
            ]
        }
    ]
}