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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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'" } |