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
Eメール [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"
    ]
}