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
电子邮箱 [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"
            ]
        }
    ]
}