Note To Self (NTS)

A simple web cliping / highlighting / notation tool for Google Chrome

¿Qué es Note To Self (NTS)?

Note To Self (NTS) es una extensión de Chrome desarrollada por http://lucidmoon.co.uk, y su función principal es "A simple web cliping / highlighting / notation tool for Google Chrome".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Note To Self (NTS)

Descarga archivos de extensión Note To Self (NTS) 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

                        A minimal web clipping / text highlighting / notation tool.  Clip text, links, images, HTML5 video & audio - all manageable from a simple central interface.  Now leveraging chrome.storage.sync for cross browser syncing via your Google account.                    

Información Básica de la Extensión

Nombre Note To Self (NTS) Note To Self (NTS)
ID emphjhogfehclnepkbghhnbbgjekfjme
URL Oficial https://chrome.google.com/webstore/detail/note-to-self-nts/emphjhogfehclnepkbghhnbbgjekfjme
Descripción A simple web cliping / highlighting / notation tool for Google Chrome
Tamaño del Archivo 72.37 KB
Cantidad de Instalaciones 53
Versión Actual 1.2.1
Última Actualización 2014-10-02
Fecha de Publicación 2014-10-02
Calificación 3.00/5 Total de 4 Calificaciones
Desarrollador http://lucidmoon.co.uk
Tipo de Pago free
Idiomas Soportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Note To Self (NTS)",
    "version": "1.2.1",
    "manifest_version": 2,
    "description": "A simple web cliping \/ highlighting \/ notation tool for Google Chrome",
    "homepage_url": "http:\/\/www.lucidmoon.co.uk",
    "icons": {
        "128": "icon_128.png"
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/lib\/lodash.js",
            "js\/lib\/nts.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "js\/lib\/jquery.js",
                "js\/lib\/jquery.highlight.js",
                "js\/lib\/lodash.js",
                "js\/lib\/nts.js",
                "js\/lib\/nts.content.js",
                "js\/content.js"
            ]
        }
    ],
    "options_page": "options.html",
    "browser_action": {
        "name": "Note to self",
        "default_icon": {
            "19": "icon_19.png"
        }
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}