New Tab URL
Use a custom URL as the New Tab page without losing address bar focus
Hvad er New Tab URL?
New Tab URL er en Chrome-udvidelse udviklet af Matthias Vogt, og dens hovedfunktion er "Use a custom URL as the New Tab page without losing address bar focus".
Udvidelsesskærmbilleder
Download New Tab URL-udvidelses-CRX-fil
Download New Tab URL-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Choose a custom URL to be displayed on the New Tab page.
The address bar stays focused when opening a new tab. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | fjmejipbaegkajpfkghaapfhdempldpd |
| Officiel URL | https://chromewebstore.google.com/detail/new-tab-url/fjmejipbaegkajpfkghaapfhdempldpd |
| Beskrivelse | Use a custom URL as the New Tab page without losing address bar focus |
| Filstørrelse | 488 KB |
| Antal Installationer | 430 |
| Nuværende Version | 0.1.2 |
| Senest Opdateret | 2022-10-10 |
| Udgivelsesdato | 2016-04-17 |
| Bedømmelse | 4.54/5 Samlet 13 Bedømmelser |
| Udvikler | Matthias Vogt |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/matthias-vogt/new-tab-url |
| Hjælpeside-URL | https://github.com/matthias-vogt/new-tab-url |
| Understøttede Sprog | 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
} | |