Note Box

A chrome extension to add notes/todos based on URL

Note Boxとは何ですか?

Note BoxはMehul Lakhanpalによって開発されたChromeの拡張機能で、その主な機能は「A chrome extension to add notes/todos based on URL」です。

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

screenshot

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

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

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Note Box Note Box
ID mbbajjgefpenmkkhcnmmnoodlbcbfnmp
公式URL https://chromewebstore.google.com/detail/note-box/mbbajjgefpenmkkhcnmmnoodlbcbfnmp
説明 A chrome extension to add notes/todos based on URL
ファイルサイズ 1.57 MB
インストール数 125
現在のバージョン 2.0
最終更新日 2021-03-28
公開日 2021-02-07
評価 5.00/5 合計 1 レビュー
開発者 Mehul Lakhanpal
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.codedrops.tech/products/note-box
対応言語 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"
}