Note Tab
Chrome extension for quick notes and calculations in the new tab
Note Tab là gì?
Note Tab là một tiện ích mở rộng Chrome được phát triển bởi Yuriy Romadin, và tính năng chính của nó là "Chrome extension for quick notes and calculations in the new tab".
Ả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 Note Tab
Tải xuống các tệp mở rộng Note 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
Your new tab page will be divided into two blocks: on the left, you have text/code editor for your quick notes or code snippets, on the right side you have "smart" calculator notepad, where you can perform basic math operations.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Note Tab |
ID | gefmkkebioafinkcmbdpncgnndifcbea |
URL Chính Thức | https://chromewebstore.google.com/detail/note-tab/gefmkkebioafinkcmbdpncgnndifcbea |
Mô tả | Chrome extension for quick notes and calculations in the new tab |
Kích Thước Tệp | 2.25 MB |
Số Lần Cài Đặt | 59 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2019-03-08 |
Ngày Phát Hành | 2019-03-08 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Yuriy Romadin |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/yuriyromadin/notetab |
URL Trang Trợ Giúp | https://github.com/yuriyromadin/notetab |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Note Tab", "version": "1.0.1", "manifest_version": 2, "chrome_url_overrides": { "newtab": "index.html" }, "description": "Chrome extension for quick notes and calculations in the new tab", "options_ui": { "page": "options.html", "open_in_tab": false }, "permissions": [ "storage" ], "background": { "scripts": [ "static\/app.background.js" ] }, "browser_action": { "default_icon": "static\/icon-16.png" }, "icons": { "16": "static\/icon-16.png", "48": "static\/icon-48.png", "128": "static\/icon-128.png" } } |