NotaBene

Put sticky notes on web pages

Cos'è NotaBene?

NotaBene è un'estensione di Chrome sviluppata da NB, e la sua funzione principale è "Put sticky notes on web pages".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione NotaBene

Scarica i file di estensione NotaBene 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

                        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!                    

Informazioni di Base sull'Estensione

Nome NotaBene NotaBene
ID nlbdclkaoocmegfnminofjekdkdgpdof
URL Ufficiale https://chrome.google.com/webstore/detail/notabene/nlbdclkaoocmegfnminofjekdkdgpdof
Descrizione Put sticky notes on web pages
Dimensione del File 95.19 KB
Conteggio Installazioni 52
Versione Corrente 0.1
Ultimo Aggiornamento 2016-09-26
Data di Pubblicazione 2016-09-26
Valutazione 4.00/5 Totale 2 Valutazioni
Sviluppatore NB
Tipo di Pagamento free
Lingue Supportate 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"
    }
}