Note Box

A chrome extension to add notes/todos based on URL

Was ist Note Box?

Note Box ist eine Chrome-Erweiterung, die von Mehul Lakhanpal entwickelt wurde, und ihr Hauptmerkmal ist "A chrome extension to add notes/todos based on URL".

Erweiterungsscreenshots

screenshot

Note Box-Erweiterungs-CRX-Datei herunterladen

Laden Sie Note Box-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Note Box Note Box
ID mbbajjgefpenmkkhcnmmnoodlbcbfnmp
Offizielle URL https://chromewebstore.google.com/detail/note-box/mbbajjgefpenmkkhcnmmnoodlbcbfnmp
Beschreibung A chrome extension to add notes/todos based on URL
Dateigröße 1.57 MB
Installationsanzahl 125
Aktuelle Version 2.0
Letztes Update 2021-03-28
Veröffentlichungsdatum 2021-02-07
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Mehul Lakhanpal
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.codedrops.tech/products/note-box
Unterstützte Sprachen 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"
}