Note To Self (NTS)

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

What is Note To Self (NTS)?

Note To Self (NTS) is a Chrome extension developed by http://lucidmoon.co.uk, and its main feature is "A simple web cliping / highlighting / notation tool for Google Chrome".

Extension Screenshots

screenshot

Download Note To Self (NTS) Extension CRX File

Download Note To Self (NTS) extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Note To Self (NTS) Note To Self (NTS)
ID emphjhogfehclnepkbghhnbbgjekfjme
Official URL https://chrome.google.com/webstore/detail/note-to-self-nts/emphjhogfehclnepkbghhnbbgjekfjme
Description A simple web cliping / highlighting / notation tool for Google Chrome
File Size 72.37 KB
Installation Count 53
Current Version 1.2.1
Last Updated 2014-10-02
Publish Date 2014-10-02
Rating 3.00/5 Total 4 Ratings
Developer http://lucidmoon.co.uk
Payment Type free
Supported Languages 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'"
}