Note To Self (NTS)

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

Cos'è Note To Self (NTS)?

Note To Self (NTS) è un'estensione di Chrome sviluppata da http://lucidmoon.co.uk, e la sua funzione principale è "A simple web cliping / highlighting / notation tool for Google Chrome".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Note To Self (NTS)

Scarica i file di estensione Note To Self (NTS) 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Note To Self (NTS) Note To Self (NTS)
ID emphjhogfehclnepkbghhnbbgjekfjme
URL Ufficiale https://chrome.google.com/webstore/detail/note-to-self-nts/emphjhogfehclnepkbghhnbbgjekfjme
Descrizione A simple web cliping / highlighting / notation tool for Google Chrome
Dimensione del File 72.37 KB
Conteggio Installazioni 53
Versione Corrente 1.2.1
Ultimo Aggiornamento 2014-10-02
Data di Pubblicazione 2014-10-02
Valutazione 3.00/5 Totale 4 Valutazioni
Sviluppatore http://lucidmoon.co.uk
Tipo di Pagamento free
Lingue Supportate 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'"
}