Paper: New tab notebook

Clean, simple interface to write notes

Vad är Paper: New tab notebook?

Paper: New tab notebook är en Chrome-tillägg utvecklad av Olivia Li, och dess huvudfunktion är "Clean, simple interface to write notes".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Paper: New tab notebook-förlängningens CRX-fil

Ladda ner Paper: New tab notebook-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Paper: New tab notebook Paper: New tab notebook
ID onpkjdjjllkdepfhcaklijcfegdjehkm
Officiell webbadress https://chromewebstore.google.com/detail/paper-new-tab-notebook/onpkjdjjllkdepfhcaklijcfegdjehkm
Beskrivning Clean, simple interface to write notes
Filstorlek 125 KB
Antal Installationer 377
Aktuell Version 2.2
Senast Uppdaterad 2021-09-30
Publiceringsdatum 2020-07-31
Betyg 4.52/5 Totalt 21 Betyg
Utvecklare Olivia Li
E-post [email protected]
Betalningssätt free
Stödda Språk 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
}