NotaBene

Put sticky notes on web pages

Qu'est-ce que NotaBene ?

NotaBene est une extension Chrome développée par NB, et sa fonction principale est "Put sticky notes on web pages".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension NotaBene

Téléchargez les fichiers d'extension NotaBene 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

                        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!                    

Informations de Base sur l'Extension

Nom NotaBene NotaBene
ID nlbdclkaoocmegfnminofjekdkdgpdof
URL Officiel https://chrome.google.com/webstore/detail/notabene/nlbdclkaoocmegfnminofjekdkdgpdof
Description Put sticky notes on web pages
Taille du Fichier 95.19 KB
Nombre d'Installations 52
Version Actuelle 0.1
Dernière Mise à Jour 2016-09-26
Date de Publication 2016-09-26
Évaluation 4.00/5 Total 2 Évaluations
Développeur NB
Type de Paiement free
Langues Prises en Charge 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"
    }
}