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 |
官方URL | 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" } } |