New tab page bookmarks
Override the new tab page with the bookmarks.
Что такое New tab page bookmarks?
New tab page bookmarks - это расширение Chrome, разработанное https://www.robertoentringer.com, и его основная функция - "Override the new tab page with the bookmarks.".
Снимки экрана расширения
Скачать файл CRX расширения New tab page bookmarks
Скачайте файлы расширений New tab page bookmarks в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension shows the bookmarks overview when opening a new tab in Chrome. You can get the full source code of extension on GitHub : https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers 🚀 New !!! Support dragging and dropping to change the order.
Основная информация о расширении
Название | |
ID | jafnapncbaamdiooljaibpebonjpgffe |
Официальный URL | https://chromewebstore.google.com/detail/new-tab-page-bookmarks/jafnapncbaamdiooljaibpebonjpgffe |
Описание | Override the new tab page with the bookmarks. |
Размер файла | 17.56 KB |
Количество установок | 29 |
Текущая Версия | 0.3 |
Последнее Обновление | 2019-05-28 |
Дата публикации | 2019-05-28 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | https://www.robertoentringer.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers |
URL страницы помощи | https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers/issues |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "New tab page bookmarks", "description": "Override the new tab page with the bookmarks.", "version": "0.3", "incognito": "split", "chrome_url_overrides": { "newtab": "ntp.html" }, "browser_action": { "default_title": "Open new tab pabe", "default_icon": "icons\/icon32.png" }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "web_accessible_resources": [ "src\/icons\/*.png" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "tabs", "bookmarks", "storage", "topSites", "chrome:\/\/favicon\/" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "manifest_version": 2 } |