Floaty Note

A fuss-free notepad extension

Was ist Floaty Note?

Floaty Note ist eine Chrome-Erweiterung, die von minorsignalstudio entwickelt wurde, und ihr Hauptmerkmal ist "A fuss-free notepad extension".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Floaty Note-Erweiterungs-CRX-Datei herunterladen

Laden Sie Floaty Note-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Floaty Note Floaty Note
ID nejhgfhcadmgpcpkaoioobffdfogncoj
Offizielle URL https://chromewebstore.google.com/detail/floaty-note/nejhgfhcadmgpcpkaoioobffdfogncoj
Beschreibung A fuss-free notepad extension
Dateigröße 16.78 KB
Installationsanzahl 26
Aktuelle Version 1.1
Letztes Update 2023-06-09
Veröffentlichungsdatum 2023-05-25
Bewertung 5.00/5 Insgesamt 5 Bewertungen
Entwickler minorsignalstudio
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
        }
    }
}