Note Box

A chrome extension to add notes/todos based on URL

What is Note Box?

Note Box is a Chrome extension developed by Mehul Lakhanpal, and its main feature is "A chrome extension to add notes/todos based on URL".

Extension Screenshots

screenshot

Download Note Box Extension CRX File

Download Note Box extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Note Box Note Box
ID mbbajjgefpenmkkhcnmmnoodlbcbfnmp
Official URL https://chromewebstore.google.com/detail/note-box/mbbajjgefpenmkkhcnmmnoodlbcbfnmp
Description A chrome extension to add notes/todos based on URL
File Size 1.57 MB
Installation Count 125
Current Version 2.0
Last Updated 2021-03-28
Publish Date 2021-02-07
Rating 5.00/5 Total 1 Ratings
Developer Mehul Lakhanpal
Email [email protected]
Payment Type free
Extension Website https://www.codedrops.tech/products/note-box
Supported Languages 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"
}