Note To Self (NTS)
A simple web cliping / highlighting / notation tool for Google Chrome
O que é Note To Self (NTS)?
Note To Self (NTS) é uma extensão do Chrome desenvolvida por http://lucidmoon.co.uk, e sua principal característica é "A simple web cliping / highlighting / notation tool for Google Chrome".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Note To Self (NTS)
Baixe arquivos de extensão Note To Self (NTS) no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | emphjhogfehclnepkbghhnbbgjekfjme |
URL Oficial | https://chrome.google.com/webstore/detail/note-to-self-nts/emphjhogfehclnepkbghhnbbgjekfjme |
Descrição | A simple web cliping / highlighting / notation tool for Google Chrome |
Tamanho do Arquivo | 72.37 KB |
Contagem de Instalações | 53 |
Versão Atual | 1.2.1 |
Última Atualização | 2014-10-02 |
Data de Publicação | 2014-10-02 |
Classificação | 3.00/5 Total de 4 Avaliações |
Desenvolvedor | http://lucidmoon.co.uk |
Tipo de Pagamento | free |
Idiomas Suportados | 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'" } |