Notebook

Create notes from websites.

Notebookとは何ですか?

Notebookはsamriddhacによって開発されたChromeの拡張機能で、その主な機能は「Create notes from websites.」です。

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

screenshot
screenshot
screenshot
screenshot

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

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

拡張機能の使用方法

                        A Chrome extension notebook to capture your notes from different sites and add to your notebook for later revisit.
To capture notes:-
a. Select any text in the visiting site, an Add Note icon will appear in the top right corner of the page. Click to add you note on the notebook.
b. Long press on any image to add it to your notebook.
c. Click on the "nb" extension icon to view/download your notes.
d. Use the "Note Manager" tab of the notebook popup to manage your notes.                    

拡張機能の基本情報

名前 Notebook Notebook
ID amjfeepaaelhocgebgjhdpipnimgfcfd
公式URL https://chrome.google.com/webstore/detail/notebook/amjfeepaaelhocgebgjhdpipnimgfcfd
説明 Create notes from websites.
ファイルサイズ 1.53 MB
インストール数 147
現在のバージョン 0.0.1
最終更新日 2020-05-11
公開日 2020-05-10
評価 5.00/5 合計 1 レビュー
開発者 samriddhac
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Notebook",
    "description": "Create notes from websites.",
    "version": "0.0.1",
    "browser_action": {
        "default_popup": "index.html",
        "default_title": "Notebook"
    },
    "icons": {
        "16": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/jquery-3.5.0.min.js",
                "scripts\/content.js"
            ],
            "css": [
                "styles\/style.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/add.png",
        "styles\/style.css"
    ],
    "permissions": [
        "activeTab"
    ],
    "content_security_policy": "script-src 'self' https:\/\/cdnjs.cloudflare.com; object-src 'self'"
}