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 |
| 官方網址 | 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'"
} | |