Chrome Note Keeper
Chrome Note Keeper: keep notes on specific websites pages.
Chrome Note Keeper là gì?
Chrome Note Keeper là một tiện ích mở rộng Chrome được phát triển bởi Alessandro Pietrantonio, và tính năng chính của nó là "Chrome Note Keeper: keep notes on specific websites pages.".
Ả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 Chrome Note Keeper
Tải xuống các tệp mở rộng Chrome Note Keeper 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
Keep notes on every website page and read it whenever you want! This extension give you the ability to write down notes about a specific web page and save it to Chrome storage. A little badge near the extension icon notify you the presence of a note. CHANGELOGS: --- v1.0 --- - Updated manifest file - Fixes on background --- v0.5 --- - Fixes on icon badge --- v0.4 --- - Added icon badge to notify the presence of notes --- v0.3 --- - Added import/export to options page - Fixes on options page - Larger textarea on popup - Fixes on popup --- v0.2 --- - Textarea label fixed --- v0.1 --- - First release
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Chrome Note Keeper |
ID | llocbjbocnpindmhcankkhiidpfaiedp |
URL Chính Thức | https://chromewebstore.google.com/detail/chrome-note-keeper/llocbjbocnpindmhcankkhiidpfaiedp |
Mô tả | Chrome Note Keeper: keep notes on specific websites pages. |
Kích Thước Tệp | 31.8 KB |
Số Lần Cài Đặt | 311 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2022-04-22 |
Ngày Phát Hành | 2020-07-04 |
Đánh Giá | 4.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Alessandro Pietrantonio |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/pietrantonio91/chrome-note-keeper |
URL Trang Trợ Giúp | https://alessandropietrantonio.it/ |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Chrome Note Keeper", "version": "1.0", "action": { "default_popup": "popup.html", "default_icon": { "16": "icons\/notekeeper16.png", "32": "icons\/notekeeper32.png", "64": "icons\/notekeeper64.png", "128": "icons\/notekeeper128.png" } }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content.js" ], "run_at": "document_idle", "all_frames": true, "match_about_blank": true } ], "options_page": "options.html", "description": "Chrome Note Keeper: keep notes on specific websites pages.", "icons": { "16": "icons\/notekeeper16.png", "32": "icons\/notekeeper32.png", "64": "icons\/notekeeper64.png", "128": "icons\/notekeeper128.png" }, "background": { "service_worker": "js\/background.js" }, "manifest_version": 3, "permissions": [ "storage", "tabs" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } |