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