Floaty Note

A fuss-free notepad extension

O que é Floaty Note?

Floaty Note é uma extensão do Chrome desenvolvida por minorsignalstudio, e sua principal característica é "A fuss-free notepad extension".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Floaty Note

Baixe arquivos de extensão Floaty Note no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Floaty Note Floaty Note
ID nejhgfhcadmgpcpkaoioobffdfogncoj
URL Oficial https://chromewebstore.google.com/detail/floaty-note/nejhgfhcadmgpcpkaoioobffdfogncoj
Descrição A fuss-free notepad extension
Tamanho do Arquivo 16.78 KB
Contagem de Instalações 26
Versão Atual 1.1
Última Atualização 2023-06-09
Data de Publicação 2023-05-25
Classificação 5.00/5 Total de 5 Avaliações
Desenvolvedor minorsignalstudio
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
        }
    }
}