Paper: New tab notebook
Clean, simple interface to write notes
Cos'è Paper: New tab notebook?
Paper: New tab notebook è un'estensione di Chrome sviluppata da Olivia Li, e la sua funzione principale è "Clean, simple interface to write notes".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Paper: New tab notebook
Scarica i file di estensione Paper: New tab notebook 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
Save notes in your new tab page. Notes are being saved using local storage, so your data is kept safe and secure. Make sure to press "Keep it" when Chrome asks whether you want to revert back to the original new tab The code is open source and available at https://github.com/olivia-li/paper
Informazioni di Base sull'Estensione
Nome | Paper: New tab notebook |
ID | onpkjdjjllkdepfhcaklijcfegdjehkm |
URL Ufficiale | https://chromewebstore.google.com/detail/paper-new-tab-notebook/onpkjdjjllkdepfhcaklijcfegdjehkm |
Descrizione | Clean, simple interface to write notes |
Dimensione del File | 125 KB |
Conteggio Installazioni | 377 |
Versione Corrente | 2.2 |
Ultimo Aggiornamento | 2021-09-30 |
Data di Pubblicazione | 2020-07-31 |
Valutazione | 4.52/5 Totale 21 Valutazioni |
Sviluppatore | Olivia Li |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Paper: New tab notebook", "version": "2.2", "description": "Clean, simple interface to write notes", "permissions": [ "storage" ], "chrome_url_overrides": { "newtab": "note.html" }, "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon128.png" }, "icons": { "128": "icon128.png", "48": "icon48.png", "16": "icon16.png" }, "manifest_version": 2 } |