Note Tab
Chrome extension for quick notes and calculations in the new tab
Что такое Note Tab?
Note Tab - это расширение Chrome, разработанное Yuriy Romadin, и его основная функция - "Chrome extension for quick notes and calculations in the new tab".
Снимки экрана расширения
Скачать файл CRX расширения Note Tab
Скачайте файлы расширений Note Tab в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Your new tab page will be divided into two blocks: on the left, you have text/code editor for your quick notes or code snippets, on the right side you have "smart" calculator notepad, where you can perform basic math operations.
Основная информация о расширении
Название | Note Tab |
ID | gefmkkebioafinkcmbdpncgnndifcbea |
Официальный URL | https://chromewebstore.google.com/detail/note-tab/gefmkkebioafinkcmbdpncgnndifcbea |
Описание | Chrome extension for quick notes and calculations in the new tab |
Размер файла | 2.25 MB |
Количество установок | 59 |
Текущая Версия | 1.0.1 |
Последнее Обновление | 2019-03-08 |
Дата публикации | 2019-03-08 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | Yuriy Romadin |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/yuriyromadin/notetab |
URL страницы помощи | https://github.com/yuriyromadin/notetab |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Note Tab", "version": "1.0.1", "manifest_version": 2, "chrome_url_overrides": { "newtab": "index.html" }, "description": "Chrome extension for quick notes and calculations in the new tab", "options_ui": { "page": "options.html", "open_in_tab": false }, "permissions": [ "storage" ], "background": { "scripts": [ "static\/app.background.js" ] }, "browser_action": { "default_icon": "static\/icon-16.png" }, "icons": { "16": "static\/icon-16.png", "48": "static\/icon-48.png", "128": "static\/icon-128.png" } } |