New Tab Custom URL

New Tab Custom URL changes the default URL of a newly opened tab in chrome :o

什么是New Tab Custom URL?

New Tab Custom URL是由https://jakegines.in开发的Chrome扩展程序,该扩展的主要功能是“New Tab Custom URL changes the default URL of a newly opened tab in chrome :o”。

扩展截图

screenshot

下载New Tab Custom URL扩展crx文件

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

扩展使用说明

                        Chrome does not allow the user to customize the landing page upon opening a new tab. Today, that changes - with New Tab Custom URL!

This extension allows the user to seamlessly change the default URL of newly opened chrome tab to a website or a local file.                    

扩展基本信息

名称 New Tab Custom URL New Tab Custom URL
ID pknneknjkcgapofljjfppcdackmcmnba
官方URL https://chromewebstore.google.com/detail/new-tab-custom-url/pknneknjkcgapofljjfppcdackmcmnba
简介 New Tab Custom URL changes the default URL of a newly opened tab in chrome :o
文件大小 9.73 KB
安装次数 50
当前版本 0.0.0.2
更新时间 2021-12-25
上架时间 2021-12-24
评分 5.00/5 共1次评分
开发者 https://jakegines.in
电子邮箱 [email protected]
付费类型 free
扩展官网 https://jakegines.in/archive/New_Tab_Custom_URL
隐私政策页面URL https://jakegines.in/privacy
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "New Tab Custom URL",
    "version": "0.0.0.2",
    "manifest_version": 2,
    "description": "New Tab Custom URL changes the default URL of a newly opened tab in chrome :o",
    "icons": {
        "64": "logo.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "New-Tab-Custom-URL"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}