New Tab URL
Use a custom URL as the New Tab page without losing address bar focus
Vad är New Tab URL?
New Tab URL är en Chrome-tillägg utvecklad av Matthias Vogt, och dess huvudfunktion är "Use a custom URL as the New Tab page without losing address bar focus".
Tilläggsskärmbilder
Ladda ner New Tab URL-förlängningens CRX-fil
Ladda ner New Tab URL-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Choose a custom URL to be displayed on the New Tab page.
The address bar stays focused when opening a new tab. Grundläggande Information om Tillägg
| Namn | |
| ID | fjmejipbaegkajpfkghaapfhdempldpd |
| Officiell webbadress | https://chromewebstore.google.com/detail/new-tab-url/fjmejipbaegkajpfkghaapfhdempldpd |
| Beskrivning | Use a custom URL as the New Tab page without losing address bar focus |
| Filstorlek | 488 KB |
| Antal Installationer | 430 |
| Aktuell Version | 0.1.2 |
| Senast Uppdaterad | 2022-10-10 |
| Publiceringsdatum | 2016-04-17 |
| Betyg | 4.54/5 Totalt 13 Betyg |
| Utvecklare | Matthias Vogt |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/matthias-vogt/new-tab-url |
| Hjälpsida URL | https://github.com/matthias-vogt/new-tab-url |
| Stödda Språk | 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
} | |