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
官方網址 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
電子郵箱 [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"
}