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”。
擴展截圖
下載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 |
ID | fjmejipbaegkajpfkghaapfhdempldpd |
官方網址 | 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 } |