New Tab URL
Use a custom URL as the New Tab page without losing address bar focus
What is New Tab URL?
New Tab URL is a Chrome extension developed by Matthias Vogt, and its main feature is "Use a custom URL as the New Tab page without losing address bar focus".
Extension Screenshots
Download New Tab URL Extension CRX File
Download New Tab URL extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Choose a custom URL to be displayed on the New Tab page. The address bar stays focused when opening a new tab.
Extension Basic Information
Name | New Tab URL |
ID | fjmejipbaegkajpfkghaapfhdempldpd |
Official URL | https://chromewebstore.google.com/detail/new-tab-url/fjmejipbaegkajpfkghaapfhdempldpd |
Description | Use a custom URL as the New Tab page without losing address bar focus |
File Size | 488 KB |
Installation Count | 430 |
Current Version | 0.1.2 |
Last Updated | 2022-10-10 |
Publish Date | 2016-04-17 |
Rating | 4.54/5 Total 13 Ratings |
Developer | Matthias Vogt |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/matthias-vogt/new-tab-url |
Help Page URL | https://github.com/matthias-vogt/new-tab-url |
Supported Languages | 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 } |