Quick Notes
Make and access notes quickly, at the launch of a new tab.
Cos'è Quick Notes?
Quick Notes è un'estensione di Chrome sviluppata da sagar0907, e la sua funzione principale è "Make and access notes quickly, at the launch of a new tab.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Quick Notes
Scarica i file di estensione Quick Notes in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Quick Notes lets you make notes on the fly which are accessible at the launch a new tab. It helps you organise your notes and colour code them as you please. It lets you add rich formatted text, images and links. Also drag and drop pretty much any thing you find interesting while you browse the internet. You can contribute at https://github.com/sagar0907/quickNotes. Feature requests are welcome.
Informazioni di Base sull'Estensione
Nome | Quick Notes |
ID | igjmkejolekkpjnaeknjgaghhlhhekle |
URL Ufficiale | https://chromewebstore.google.com/detail/quick-notes/igjmkejolekkpjnaeknjgaghhlhhekle |
Descrizione | Make and access notes quickly, at the launch of a new tab. |
Dimensione del File | 1.03 MB |
Conteggio Installazioni | 1,883 |
Versione Corrente | 0.0.1.5 |
Ultimo Aggiornamento | 2019-03-08 |
Data di Pubblicazione | 2019-03-08 |
Valutazione | 4.00/5 Totale 9 Valutazioni |
Sviluppatore | sagar0907 |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Quick Notes", "short_name": "Quick Notes", "description": "Make and access notes quickly, at the launch of a new tab.", "version": "0.0.1.5", "browser_action": { "default_icon": "images\/Quick_Note_Icon_48.png", "default_title": "Quick Notes" }, "icons": { "16": "images\/Quick_Note_Icon_16.png", "48": "images\/Quick_Note_Icon_48.png", "128": "images\/Quick_Note_Icon_128.png" }, "chrome_url_overrides": { "newtab": "html\/newtab.html" }, "permissions": [ "tabs", "activeTab", "background", "contextMenus", "storage", "clipboardRead", "clipboardWrite" ], "background": { "page": "html\/background.html", "persistent": true } } |