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
官方網址 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"
    }
}