NotaBene

Put sticky notes on web pages

Was ist NotaBene?

NotaBene ist eine Chrome-Erweiterung, die von NB entwickelt wurde, und ihr Hauptmerkmal ist "Put sticky notes on web pages".

Erweiterungsscreenshots

screenshot

NotaBene-Erweiterungs-CRX-Datei herunterladen

Laden Sie NotaBene-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

                        NotaBene is a Chrome extension that allows you to put sticky notes on web pages. The notes are saved automatically and remain until you decide to remove them, even if you restart your browser. To use NotaBene, click the yellow N in the upper right of your browser. A note will appear at the top right of the page, which you can move, resize, and write your notes in!                    

Grundlegende Informationen zur Erweiterung

Name NotaBene NotaBene
ID nlbdclkaoocmegfnminofjekdkdgpdof
Offizielle URL https://chrome.google.com/webstore/detail/notabene/nlbdclkaoocmegfnminofjekdkdgpdof
Beschreibung Put sticky notes on web pages
Dateigröße 95.19 KB
Installationsanzahl 52
Aktuelle Version 0.1
Letztes Update 2016-09-26
Veröffentlichungsdatum 2016-09-26
Bewertung 4.00/5 Insgesamt 2 Bewertungen
Entwickler NB
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NotaBene",
    "version": "0.1",
    "description": "Put sticky notes on web pages",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.1.0.min.js",
                "content.js"
            ],
            "css": [
                "note_style.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "run_at": "document_idle"
    },
    "browser_action": {
        "default_icon": {
            "19": "nb_icon.png"
        }
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ],
    "icons": {
        "16": "nb_icon.png",
        "48": "nb_icon.png",
        "128": "nb_icon.png"
    }
}