Floaty Note

A fuss-free notepad extension

Floaty Note là gì?

Floaty Note là một tiện ích mở rộng Chrome được phát triển bởi minorsignalstudio, và tính năng chính của nó là "A fuss-free notepad extension".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Floaty Note

Tải xuống các tệp mở rộng Floaty Note dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Floaty Note Floaty Note
ID nejhgfhcadmgpcpkaoioobffdfogncoj
URL Chính Thức https://chromewebstore.google.com/detail/floaty-note/nejhgfhcadmgpcpkaoioobffdfogncoj
Mô tả A fuss-free notepad extension
Kích Thước Tệp 16.78 KB
Số Lần Cài Đặt 26
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2023-06-09
Ngày Phát Hành 2023-05-25
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển minorsignalstudio
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
        }
    }
}