Floaty Note
A fuss-free notepad extension
Что такое Floaty Note?
Floaty Note - это расширение Chrome, разработанное minorsignalstudio, и его основная функция - "A fuss-free notepad extension".
Снимки экрана расширения
Скачать файл CRX расширения Floaty Note
Скачайте файлы расширений Floaty Note в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Floaty Note is a light Chrome extension that makes it easy to store text for copy/pasting or quick access. Use the Ctrl + Y shortcut to open Floaty Note anytime. Use cases: - Keep your hex codes in one place without having to move between tabs - Quickly jot down info from a web page, and then copy it in one go for your main doc - Remove text formatting from copied text blocks - Keep code snippets handy - Keep addresses or other information for long forms handy without moving between tabs
Основная информация о расширении
Название | Floaty Note |
ID | nejhgfhcadmgpcpkaoioobffdfogncoj |
Официальный URL | https://chromewebstore.google.com/detail/floaty-note/nejhgfhcadmgpcpkaoioobffdfogncoj |
Описание | A fuss-free notepad extension |
Размер файла | 16.78 KB |
Количество установок | 26 |
Текущая Версия | 1.1 |
Последнее Обновление | 2023-06-09 |
Дата публикации | 2023-05-25 |
Рейтинг | 5.00/5 Всего 5 оценок |
Разработчик | minorsignalstudio |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Floaty Note", "version": "1.1", "manifest_version": 3, "description": "A fuss-free notepad extension", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "icon.png", "48": "icon.png", "128": "icon.png" } }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Y", "mac": "MacCtrl+Y" } } }, "permissions": [ "storage" ], "action_handlers": { "default": { "type": "popup", "chrome_style": true } } } |