stickynote tab
override the new tab page so that user can create sticky notes to take notes
stickynote tab là gì?
stickynote tab là một tiện ích mở rộng Chrome được phát triển bởi ellayang40, và tính năng chính của nó là "override the new tab page so that user can create sticky notes to take notes".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng stickynote tab
Tải xuống các tệp mở rộng stickynote tab dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
* 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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | stickynote tab |
ID | cpnckoglpiageliaeeopbhdahilnjeeb |
URL Chính Thức | https://chromewebstore.google.com/detail/stickynote-tab/cpnckoglpiageliaeeopbhdahilnjeeb |
Mô tả | override the new tab page so that user can create sticky notes to take notes |
Kích Thước Tệp | 3.48 MB |
Số Lần Cài Đặt | 193 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2021-09-14 |
Ngày Phát Hành | 2020-05-08 |
Đánh Giá | 4.50/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | ellayang40 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/yinglan98/chrome-ext---sticky |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |