Note Box

A chrome extension to add notes/todos based on URL

Wat is Note Box?

Note Box is een Chrome-extensie ontwikkeld door Mehul Lakhanpal, en de belangrijkste functie is "A chrome extension to add notes/todos based on URL".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Note Box

Download Note Box-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Note Box Note Box
ID mbbajjgefpenmkkhcnmmnoodlbcbfnmp
Officiële URL https://chromewebstore.google.com/detail/note-box/mbbajjgefpenmkkhcnmmnoodlbcbfnmp
Beschrijving A chrome extension to add notes/todos based on URL
Bestandsgrootte 1.57 MB
Aantal Installaties 125
Huidige Versie 2.0
Laatst Bijgewerkt 2021-03-28
Publicatiedatum 2021-02-07
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Mehul Lakhanpal
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://www.codedrops.tech/products/note-box
Ondersteunde Talen 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"
}