Note To Self (NTS)

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

Vad är Note To Self (NTS)?

Note To Self (NTS) är en Chrome-tillägg utvecklad av http://lucidmoon.co.uk, och dess huvudfunktion är "A simple web cliping / highlighting / notation tool for Google Chrome".

Tilläggsskärmbilder

screenshot

Ladda ner Note To Self (NTS)-förlängningens CRX-fil

Ladda ner Note To Self (NTS)-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Note To Self (NTS) Note To Self (NTS)
ID emphjhogfehclnepkbghhnbbgjekfjme
Officiell webbadress https://chrome.google.com/webstore/detail/note-to-self-nts/emphjhogfehclnepkbghhnbbgjekfjme
Beskrivning A simple web cliping / highlighting / notation tool for Google Chrome
Filstorlek 72.37 KB
Antal Installationer 53
Aktuell Version 1.2.1
Senast Uppdaterad 2014-10-02
Publiceringsdatum 2014-10-02
Betyg 3.00/5 Totalt 4 Betyg
Utvecklare http://lucidmoon.co.uk
Betalningssätt free
Stödda Språk 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'"
}