stickynote tab
override the new tab page so that user can create sticky notes to take notes
什麼是stickynote tab?
stickynote tab是由ellayang40開發的Chrome擴展程式,該擴展的主要功能是“override the new tab page so that user can create sticky notes to take notes”。
擴展截圖
下載stickynote tab擴展crx文件
下載stickynote tab擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
* use new tab page to take quick notes on sticky notes * notes will be saved in the browser so that next time you open the new tab page, you will see your notes * note allows text formatting such as bolding, lists, changing font color, etc * can create, delete, and move notes * can minimize and maximize the notes Great for creating todo list and other quick notes for temporary use.
擴展基本資訊
名稱 | stickynote tab |
ID | cpnckoglpiageliaeeopbhdahilnjeeb |
官方網址 | https://chromewebstore.google.com/detail/stickynote-tab/cpnckoglpiageliaeeopbhdahilnjeeb |
簡介 | override the new tab page so that user can create sticky notes to take notes |
檔案大小 | 3.48 MB |
安裝次數 | 193 |
目前版本 | 1.1 |
更新時間 | 2021-09-14 |
上架時間 | 2020-05-08 |
評分 | 4.50/5 共 2 次評分 |
開發者 | ellayang40 |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/yinglan98/chrome-ext---sticky |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "stickynote tab", "version": "1.1", "description": "override the new tab page so that user can create sticky notes to take notes", "permissions": [ "storage", "tabs" ], "manifest_version": 2, "chrome_url_overrides": { "newtab": "dis_quill_1.html" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "icons": { "16": "images\/sticky_icon_16.png", "48": "images\/sticky_icon_48.png", "128": "images\/sticky_icon_128.png" } } |