New Tab URL
Use a custom URL as the New Tab page without losing address bar focus
Что такое New Tab URL?
New Tab URL - это расширение Chrome, разработанное Matthias Vogt, и его основная функция - "Use a custom URL as the New Tab page without losing address bar focus".
Снимки экрана расширения
Скачать файл CRX расширения New Tab URL
Скачайте файлы расширений 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. Основная информация о расширении
| Название | |
| ID | fjmejipbaegkajpfkghaapfhdempldpd |
| Официальный URL | 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
} | |