Paper: New tab notebook

Clean, simple interface to write notes

¿Qué es Paper: New tab notebook?

Paper: New tab notebook es una extensión de Chrome desarrollada por Olivia Li, y su función principal es "Clean, simple interface to write notes".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Paper: New tab notebook

Descarga archivos de extensión Paper: New tab notebook en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Paper: New tab notebook Paper: New tab notebook
ID onpkjdjjllkdepfhcaklijcfegdjehkm
URL Oficial https://chromewebstore.google.com/detail/paper-new-tab-notebook/onpkjdjjllkdepfhcaklijcfegdjehkm
Descripción Clean, simple interface to write notes
Tamaño del Archivo 125 KB
Cantidad de Instalaciones 377
Versión Actual 2.2
Última Actualización 2021-09-30
Fecha de Publicación 2020-07-31
Calificación 4.52/5 Total de 21 Calificaciones
Desarrollador Olivia Li
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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
}