Note Tab
Chrome extension for quick notes and calculations in the new tab
Cos'è Note Tab?
Note Tab è un'estensione di Chrome sviluppata da Yuriy Romadin, e la sua funzione principale è "Chrome extension for quick notes and calculations in the new tab".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Note Tab
Scarica i file di estensione Note Tab 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
Your new tab page will be divided into two blocks: on the left, you have text/code editor for your quick notes or code snippets, on the right side you have "smart" calculator notepad, where you can perform basic math operations.
Informazioni di Base sull'Estensione
Nome | Note Tab |
ID | gefmkkebioafinkcmbdpncgnndifcbea |
URL Ufficiale | https://chromewebstore.google.com/detail/note-tab/gefmkkebioafinkcmbdpncgnndifcbea |
Descrizione | Chrome extension for quick notes and calculations in the new tab |
Dimensione del File | 2.25 MB |
Conteggio Installazioni | 59 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2019-03-08 |
Data di Pubblicazione | 2019-03-08 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Yuriy Romadin |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/yuriyromadin/notetab |
URL della Pagina di Aiuto | https://github.com/yuriyromadin/notetab |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Note Tab", "version": "1.0.1", "manifest_version": 2, "chrome_url_overrides": { "newtab": "index.html" }, "description": "Chrome extension for quick notes and calculations in the new tab", "options_ui": { "page": "options.html", "open_in_tab": false }, "permissions": [ "storage" ], "background": { "scripts": [ "static\/app.background.js" ] }, "browser_action": { "default_icon": "static\/icon-16.png" }, "icons": { "16": "static\/icon-16.png", "48": "static\/icon-48.png", "128": "static\/icon-128.png" } } |