Floaty Note
A fuss-free notepad extension
Qu'est-ce que Floaty Note ?
Floaty Note est une extension Chrome développée par minorsignalstudio, et sa fonction principale est "A fuss-free notepad extension".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Floaty Note
Téléchargez les fichiers d'extension Floaty Note au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Floaty Note |
ID | nejhgfhcadmgpcpkaoioobffdfogncoj |
URL Officiel | https://chromewebstore.google.com/detail/floaty-note/nejhgfhcadmgpcpkaoioobffdfogncoj |
Description | A fuss-free notepad extension |
Taille du Fichier | 16.78 KB |
Nombre d'Installations | 26 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2023-06-09 |
Date de Publication | 2023-05-25 |
Évaluation | 5.00/5 Total 5 Évaluations |
Développeur | minorsignalstudio |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } } } |