Note Box

A chrome extension to add notes/todos based on URL

Note Box là gì?

Note Box là một tiện ích mở rộng Chrome được phát triển bởi Mehul Lakhanpal, và tính năng chính của nó là "A chrome extension to add notes/todos based on URL".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Note Box

Tải xuống các tệp mở rộng Note Box 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

                        Add notes/todos in domain/URL environment. Revisit the same note list when back to that URL or access all the notes from the Homepage. No Login/Signup. All the notes are stored in the browser memory.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Note Box Note Box
ID mbbajjgefpenmkkhcnmmnoodlbcbfnmp
URL Chính Thức https://chromewebstore.google.com/detail/note-box/mbbajjgefpenmkkhcnmmnoodlbcbfnmp
Mô tả A chrome extension to add notes/todos based on URL
Kích Thước Tệp 1.57 MB
Số Lần Cài Đặt 125
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2021-03-28
Ngày Phát Hành 2021-02-07
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Mehul Lakhanpal
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.codedrops.tech/products/note-box
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Note Box",
    "version": "2.0",
    "manifest_version": 3,
    "description": "A chrome extension to add notes\/todos based on URL",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        },
        "default_title": "Note Box",
        "default_popup": "build\/popup\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "homepage_url": "https:\/\/www.codedrops.tech\/products\/note-box"
}