Note To Self (NTS)
A simple web cliping / highlighting / notation tool for Google Chrome
Was ist Note To Self (NTS)?
Note To Self (NTS) ist eine Chrome-Erweiterung, die von http://lucidmoon.co.uk entwickelt wurde, und ihr Hauptmerkmal ist "A simple web cliping / highlighting / notation tool for Google Chrome".
Erweiterungsscreenshots
Note To Self (NTS)-Erweiterungs-CRX-Datei herunterladen
Laden Sie Note To Self (NTS)-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | emphjhogfehclnepkbghhnbbgjekfjme |
| Offizielle URL | https://chrome.google.com/webstore/detail/note-to-self-nts/emphjhogfehclnepkbghhnbbgjekfjme |
| Beschreibung | A simple web cliping / highlighting / notation tool for Google Chrome |
| Dateigröße | 72.37 KB |
| Installationsanzahl | 53 |
| Aktuelle Version | 1.2.1 |
| Letztes Update | 2014-10-02 |
| Veröffentlichungsdatum | 2014-10-02 |
| Bewertung | 3.00/5 Insgesamt 4 Bewertungen |
| Entwickler | http://lucidmoon.co.uk |
| Zahlungsart | free |
| Unterstützte Sprachen | 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'"
} | |