Paper: New tab notebook

Clean, simple interface to write notes

What is Paper: New tab notebook?

Paper: New tab notebook is a Chrome extension developed by Olivia Li, and its main feature is "Clean, simple interface to write notes".

Extension Screenshots

screenshot
screenshot

Download Paper: New tab notebook Extension CRX File

Download Paper: New tab notebook extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Paper: New tab notebook Paper: New tab notebook
ID onpkjdjjllkdepfhcaklijcfegdjehkm
Official URL https://chromewebstore.google.com/detail/paper-new-tab-notebook/onpkjdjjllkdepfhcaklijcfegdjehkm
Description Clean, simple interface to write notes
File Size 125 KB
Installation Count 377
Current Version 2.2
Last Updated 2021-09-30
Publish Date 2020-07-31
Rating 4.52/5 Total 21 Ratings
Developer Olivia Li
Email [email protected]
Payment Type free
Supported Languages 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
}