Paper: New tab notebook
Clean, simple interface to write notes
什麼是Paper: New tab notebook?
Paper: New tab notebook是由Olivia Li開發的Chrome擴展程式,該擴展的主要功能是“Clean, simple interface to write notes”。
擴展截圖
下載Paper: New tab notebook擴展crx文件
下載Paper: New tab notebook擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | Paper: New tab notebook |
ID | onpkjdjjllkdepfhcaklijcfegdjehkm |
官方網址 | https://chromewebstore.google.com/detail/paper-new-tab-notebook/onpkjdjjllkdepfhcaklijcfegdjehkm |
簡介 | Clean, simple interface to write notes |
檔案大小 | 125 KB |
安裝次數 | 377 |
目前版本 | 2.2 |
更新時間 | 2021-09-30 |
上架時間 | 2020-07-31 |
評分 | 4.52/5 共 21 次評分 |
開發者 | Olivia Li |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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 } |