Note Box

A chrome extension to add notes/todos based on URL

Cos'è Note Box?

Note Box è un'estensione di Chrome sviluppata da Mehul Lakhanpal, e la sua funzione principale è "A chrome extension to add notes/todos based on URL".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Note Box

Scarica i file di estensione Note Box in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Note Box Note Box
ID mbbajjgefpenmkkhcnmmnoodlbcbfnmp
URL Ufficiale https://chromewebstore.google.com/detail/note-box/mbbajjgefpenmkkhcnmmnoodlbcbfnmp
Descrizione A chrome extension to add notes/todos based on URL
Dimensione del File 1.57 MB
Conteggio Installazioni 125
Versione Corrente 2.0
Ultimo Aggiornamento 2021-03-28
Data di Pubblicazione 2021-02-07
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Mehul Lakhanpal
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.codedrops.tech/products/note-box
Lingue Supportate 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"
}