NotaBene

Put sticky notes on web pages

NotaBene là gì?

NotaBene là một tiện ích mở rộng Chrome được phát triển bởi NB, và tính năng chính của nó là "Put sticky notes on web pages".

Ả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 NotaBene

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

                        NotaBene is a Chrome extension that allows you to put sticky notes on web pages. The notes are saved automatically and remain until you decide to remove them, even if you restart your browser. To use NotaBene, click the yellow N in the upper right of your browser. A note will appear at the top right of the page, which you can move, resize, and write your notes in!                    

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

Tên NotaBene NotaBene
ID nlbdclkaoocmegfnminofjekdkdgpdof
URL Chính Thức https://chrome.google.com/webstore/detail/notabene/nlbdclkaoocmegfnminofjekdkdgpdof
Mô tả Put sticky notes on web pages
Kích Thước Tệp 95.19 KB
Số Lần Cài Đặt 52
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2016-09-26
Ngày Phát Hành 2016-09-26
Đánh Giá 4.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển NB
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NotaBene",
    "version": "0.1",
    "description": "Put sticky notes on web pages",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.1.0.min.js",
                "content.js"
            ],
            "css": [
                "note_style.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "run_at": "document_idle"
    },
    "browser_action": {
        "default_icon": {
            "19": "nb_icon.png"
        }
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ],
    "icons": {
        "16": "nb_icon.png",
        "48": "nb_icon.png",
        "128": "nb_icon.png"
    }
}