NotaBene

Put sticky notes on web pages

¿Qué es NotaBene?

NotaBene es una extensión de Chrome desarrollada por NB, y su función principal es "Put sticky notes on web pages".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión NotaBene

Descarga archivos de extensión NotaBene en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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!                    

Información Básica de la Extensión

Nombre NotaBene NotaBene
ID nlbdclkaoocmegfnminofjekdkdgpdof
URL Oficial https://chrome.google.com/webstore/detail/notabene/nlbdclkaoocmegfnminofjekdkdgpdof
Descripción Put sticky notes on web pages
Tamaño del Archivo 95.19 KB
Cantidad de Instalaciones 52
Versión Actual 0.1
Última Actualización 2016-09-26
Fecha de Publicación 2016-09-26
Calificación 4.00/5 Total de 2 Calificaciones
Desarrollador NB
Tipo de Pago free
Idiomas Soportados 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"
    }
}