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
电子邮箱 [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"
}