NotaBene

Put sticky notes on web pages

NotaBeneとは何ですか?

NotaBeneはNBによって開発されたChromeの拡張機能で、その主な機能は「Put sticky notes on web pages」です。

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

screenshot

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

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

拡張機能の使用方法

                        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!                    

拡張機能の基本情報

名前 NotaBene NotaBene
ID nlbdclkaoocmegfnminofjekdkdgpdof
公式URL https://chrome.google.com/webstore/detail/notabene/nlbdclkaoocmegfnminofjekdkdgpdof
説明 Put sticky notes on web pages
ファイルサイズ 95.19 KB
インストール数 52
現在のバージョン 0.1
最終更新日 2016-09-26
公開日 2016-09-26
評価 4.00/5 合計 2 レビュー
開発者 NB
支払い方法 free
対応言語 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"
    }
}