New Tab Redirect
Redirects your 'new tab' to an external website.
New Tab Redirectとは何ですか?
New Tab Redirectはhttps://joshuahemphill.comによって開発されたChromeの拡張機能で、その主な機能は「Redirects your 'new tab' to an external website.」です。
拡張機能のスクリーンショット
New Tab Redirect拡張機能のCRXファイルをダウンロード
New Tab Redirect拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A basic extension to redirect the 'New Tab' to an external site of your choosing. Make sure you keep seeing your notes or important info when you're browsing. A minimal extension; no background scripts or unnecessary permissions. For issues and suggestions open a github issue. Backend Description: The extension implements a temporary 'New Tab Page' that when loaded, immediately queries the extension storage for your set redirect page, and then proceeds to redirect. Removed any background scripts so that it only runs when you initiate it.
拡張機能の基本情報
名前 | New Tab Redirect |
ID | gjhaadblnhgegfaegeekjlhaciebchfk |
公式URL | https://chromewebstore.google.com/detail/new-tab-redirect/gjhaadblnhgegfaegeekjlhaciebchfk |
説明 | Redirects your 'new tab' to an external website. |
ファイルサイズ | 32.8 KB |
インストール数 | 504 |
現在のバージョン | 1.1 |
最終更新日 | 2020-11-25 |
公開日 | 2020-02-19 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | https://joshuahemphill.com |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/josh-hemphill/redirect-newtab-ext |
ヘルプページのURL | https://github.com/josh-hemphill/redirect-newtab-ext |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "New Tab Redirect", "description": "Redirects your 'new tab' to an external website.", "version": "1.1", "author": "Joshua Hemphill", "browser_action": { "default_icon": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "64": "images\/icon64.png", "128": "images\/icon128.png" }, "default_title": "New-Tab Redirect", "default_popup": "popup\/index.html" }, "offline_enabled": false, "short_name": "Tab Redirect", "permissions": [ "storage" ], "chrome_url_overrides": { "newtab": "tab-redirect\/index.html" } } |