Note To Self (NTS)
A simple web cliping / highlighting / notation tool for Google Chrome
什么是Note To Self (NTS)?
Note To Self (NTS)是由http://lucidmoon.co.uk开发的Chrome扩展程序,该扩展的主要功能是“A simple web cliping / highlighting / notation tool for Google Chrome”。
扩展截图
下载Note To Self (NTS)扩展crx文件
下载Note To Self (NTS)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
ID | emphjhogfehclnepkbghhnbbgjekfjme |
官方URL | https://chrome.google.com/webstore/detail/note-to-self-nts/emphjhogfehclnepkbghhnbbgjekfjme |
简介 | A simple web cliping / highlighting / notation tool for Google Chrome |
文件大小 | 72.37 KB |
安装次数 | 53 |
当前版本 | 1.2.1 |
更新时间 | 2014-10-02 |
上架时间 | 2014-10-02 |
评分 | 3.00/5 共4次评分 |
开发者 | http://lucidmoon.co.uk |
付费类型 | free |
支持的语言 | 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'" } |