Floaty Note

A fuss-free notepad extension

什麼是Floaty Note?

Floaty Note是由minorsignalstudio開發的Chrome擴展程式,該擴展的主要功能是“A fuss-free notepad extension”。

擴展截圖

screenshot
screenshot
screenshot

下載Floaty Note擴展crx文件

下載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 Floaty Note
ID nejhgfhcadmgpcpkaoioobffdfogncoj
官方網址 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
        }
    }
}