Note Box

A chrome extension to add notes/todos based on URL

Qu'est-ce que Note Box ?

Note Box est une extension Chrome développée par Mehul Lakhanpal, et sa fonction principale est "A chrome extension to add notes/todos based on URL".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Note Box

Téléchargez les fichiers d'extension Note Box au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Note Box Note Box
ID mbbajjgefpenmkkhcnmmnoodlbcbfnmp
URL Officiel https://chromewebstore.google.com/detail/note-box/mbbajjgefpenmkkhcnmmnoodlbcbfnmp
Description A chrome extension to add notes/todos based on URL
Taille du Fichier 1.57 MB
Nombre d'Installations 125
Version Actuelle 2.0
Dernière Mise à Jour 2021-03-28
Date de Publication 2021-02-07
Évaluation 5.00/5 Total 1 Évaluations
Développeur Mehul Lakhanpal
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.codedrops.tech/products/note-box
Langues Prises en Charge 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"
}