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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 } } } |