TabNote

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

什麼是TabNote?

TabNote是由https://tabnote.co開發的Chrome擴展程式,該擴展的主要功能是“use your Browser as your Notepad, take notes while you are browsing”。

擴展截圖

screenshot
screenshot
screenshot

下載TabNote擴展crx文件

下載TabNote擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 TabNote TabNote
ID geahanokafgmnleflfpekpmnkceehifk
官方網址 https://chrome.google.com/webstore/detail/tabnote/geahanokafgmnleflfpekpmnkceehifk
簡介 use your Browser as your Notepad, take notes while you are browsing
檔案大小 130 KB
安裝次數 354
目前版本 0.2.0.1
更新時間 2019-02-16
上架時間 2019-02-16
評分 4.00/5 共 4 次評分
開發者 https://tabnote.co
付費類型 free
擴展官網 https://tabnote.co/
說明頁面URL https://tabnote.co/faq
支援的語言 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"
    }
}