New Tab URL

Use a custom URL as the New Tab page without losing address bar focus

什么是New Tab URL?

New Tab URL是由Matthias Vogt开发的Chrome扩展程序,该扩展的主要功能是“Use a custom URL as the New Tab page without losing address bar focus”。

扩展截图

screenshot
screenshot

下载New Tab URL扩展crx文件

下载New Tab URL扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Choose a custom URL to be displayed on the New Tab page.
The address bar stays focused when opening a new tab.                    

扩展基本信息

名称 New Tab URL New Tab URL
ID fjmejipbaegkajpfkghaapfhdempldpd
官方URL https://chromewebstore.google.com/detail/new-tab-url/fjmejipbaegkajpfkghaapfhdempldpd
简介 Use a custom URL as the New Tab page without losing address bar focus
文件大小 488 KB
安装次数 430
当前版本 0.1.2
更新时间 2022-10-10
上架时间 2016-04-17
评分 4.54/5 共13次评分
开发者 Matthias Vogt
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/matthias-vogt/new-tab-url
帮助页面URL https://github.com/matthias-vogt/new-tab-url
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "New Tab URL",
    "description": "Use a custom URL as the New Tab page without losing address bar focus",
    "version": "0.1.2",
    "chrome_url_overrides": {
        "newtab": "new-tab.html"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_icon": {
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        },
        "default_popup": "options.html",
        "default_title": "New Tab URL"
    },
    "permissions": [
        "storage",
        "file:\/\/\/*"
    ],
    "manifest_version": 2
}