stickynote tab
override the new tab page so that user can create sticky notes to take notes
Что такое stickynote tab?
stickynote tab - это расширение Chrome, разработанное ellayang40, и его основная функция - "override the new tab page so that user can create sticky notes to take notes".
Снимки экрана расширения
Скачать файл CRX расширения stickynote tab
Скачайте файлы расширений stickynote tab в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
* use new tab page to take quick notes on sticky notes * notes will be saved in the browser so that next time you open the new tab page, you will see your notes * note allows text formatting such as bolding, lists, changing font color, etc * can create, delete, and move notes * can minimize and maximize the notes Great for creating todo list and other quick notes for temporary use.
Основная информация о расширении
Название | stickynote tab |
ID | cpnckoglpiageliaeeopbhdahilnjeeb |
Официальный URL | https://chromewebstore.google.com/detail/stickynote-tab/cpnckoglpiageliaeeopbhdahilnjeeb |
Описание | override the new tab page so that user can create sticky notes to take notes |
Размер файла | 3.48 MB |
Количество установок | 193 |
Текущая Версия | 1.1 |
Последнее Обновление | 2021-09-14 |
Дата публикации | 2020-05-08 |
Рейтинг | 4.50/5 Всего 2 оценок |
Разработчик | ellayang40 |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/yinglan98/chrome-ext---sticky |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "stickynote tab", "version": "1.1", "description": "override the new tab page so that user can create sticky notes to take notes", "permissions": [ "storage", "tabs" ], "manifest_version": 2, "chrome_url_overrides": { "newtab": "dis_quill_1.html" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "icons": { "16": "images\/sticky_icon_16.png", "48": "images\/sticky_icon_48.png", "128": "images\/sticky_icon_128.png" } } |