Paper: New tab notebook
Clean, simple interface to write notes
O que é Paper: New tab notebook?
Paper: New tab notebook é uma extensão do Chrome desenvolvida por Olivia Li, e sua principal característica é "Clean, simple interface to write notes".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Paper: New tab notebook
Baixe arquivos de extensão Paper: New tab notebook 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
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
Informações Básicas da Extensão
Nome | Paper: New tab notebook |
ID | onpkjdjjllkdepfhcaklijcfegdjehkm |
URL Oficial | https://chromewebstore.google.com/detail/paper-new-tab-notebook/onpkjdjjllkdepfhcaklijcfegdjehkm |
Descrição | Clean, simple interface to write notes |
Tamanho do Arquivo | 125 KB |
Contagem de Instalações | 377 |
Versão Atual | 2.2 |
Última Atualização | 2021-09-30 |
Data de Publicação | 2020-07-31 |
Classificação | 4.52/5 Total de 21 Avaliações |
Desenvolvedor | Olivia Li |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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 } |