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 ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| 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
}
}
} | |