TabNote

use your Browser as your Notepad, take notes while you are browsing

TabNote là gì?

TabNote là một tiện ích mở rộng Chrome được phát triển bởi https://tabnote.co, và tính năng chính của nó là "use your Browser as your Notepad, take notes while you are browsing".

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

screenshot
screenshot
screenshot

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

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

                        TabNote is a free and offline chrome extension which can use to take notes while you are browsing the web. 🤗

TabNote is free and offline 😍 😻

🤖 You can customize your TabNote by setting up font size, font color, font family, background color, spell checker etc.

You can use TabNote as a clipboard or a notepad. Purpose of TabNote is productivity. You don't have to wait until for notepad, TabNote is a single click away. 👼

How to customize your TabNote?
- right click on TabNote launcher icon and select Options
- you will see customizable options

Take notes while you are browsing with TabNote 😊

TabNote is managed on GitHub and licensed under the MIT license.
https://github.com/devrolabs/TabNote                    

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

Tên TabNote TabNote
ID geahanokafgmnleflfpekpmnkceehifk
URL Chính Thức https://chrome.google.com/webstore/detail/tabnote/geahanokafgmnleflfpekpmnkceehifk
Mô tả use your Browser as your Notepad, take notes while you are browsing
Kích Thước Tệp 130 KB
Số Lần Cài Đặt 354
Phiên Bản Hiện Tại 0.2.0.1
Cập Nhật Lần Cuối 2019-02-16
Ngày Phát Hành 2019-02-16
Đánh Giá 4.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://tabnote.co
Loại Thanh Toán free
Trang Web Mở Rộng https://tabnote.co/
URL Trang Trợ Giúp https://tabnote.co/faq
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TabNote",
    "short_name": "TabNote",
    "description": "use your Browser as your Notepad, take notes while you are browsing",
    "version": "0.2.0.1",
    "background": {
        "scripts": [
            "jquery-3.3.1.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "popup.html",
    "permissions": [
        "tabs",
        "activeTab",
        "http:\/\/*\/",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "notifications",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        },
        "default_title": "TabNote"
    }
}