WebNote

Take notes directly in the page.

WebNoteとは何ですか?

WebNoteはHogan-TRによって開発されたChromeの拡張機能で、その主な機能は「Take notes directly in the page.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

WebNote拡張機能のCRXファイルをダウンロード

WebNote拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        A Chrome extension that allows you to note freely on web pages and save it persistently
> Mainly used to solve the problem of "notes" when viewing documents and browsing web pages

GitHub Repository: https://github.com/Hogan-TR/WebNote

How to use?
1. Click the extension icon in the status bar to turn on the switch (enable extension on the current page)
2. Select the target text with the mouse to start text annotation
3. In the pop-up toolbar, press and hold the first button to call up the secondary highlight color bar, providing a variety of highlight color options
4. For the existing mark, select arbitrarily to partially cancel
5. If you want to clear all notes on the current page, click the extension icon and click "Clear Notes" in the pop-up box

FeedBack
If you encounter any problems or bugs during use, I am very happy to receive your feedback, but I hope you can clearly describe the problem you encountered in the email (for example: browsed websites, screenshots, etc.), the following is My email, looking forward to your feedback.
[email protected]                    

拡張機能の基本情報

名前 WebNote WebNote
ID hkicaocjinbpfkollonmickokmfmokkp
公式URL https://chromewebstore.google.com/detail/webnote/hkicaocjinbpfkollonmickokmfmokkp
説明 Take notes directly in the page.
ファイルサイズ 31.56 KB
インストール数 409
現在のバージョン 0.0.4
最終更新日 2023-02-27
公開日 2020-08-19
評価 4.00/5 合計 1 レビュー
開発者 Hogan-TR
Eメール [email protected]
支払い方法 free
対応言語 en,es,zh-CN,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WebNote",
    "author": {
        "email": "[email protected]"
    },
    "version": "0.0.4",
    "description": "Take notes directly in the page.",
    "manifest_version": 3,
    "default_locale": "en",
    "permissions": [
        "storage",
        "tabs"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/inject.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "WebNote",
        "default_icon": {
            "128": "images\/128.png",
            "16": "images\/16.png",
            "19": "images\/19.png",
            "32": "images\/32.png",
            "38": "images\/38.png",
            "48": "images\/48.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/utils.js",
                "js\/content-script.js"
            ],
            "css": [
                "css\/custom.css"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "images\/128.png",
        "16": "images\/16.png",
        "19": "images\/19.png",
        "32": "images\/32.png",
        "38": "images\/38.png",
        "48": "images\/48.png"
    }
}