Take Note

An extension to help you take notes on long articles in your browser. Recognizes and formats code.

O que é Take Note?

Take Note é uma extensão do Chrome desenvolvida por sarahhubschmail, e sua principal característica é "An extension to help you take notes on long articles in your browser. Recognizes and formats code.".

Capturas de Tela da Extensão

Baixar o arquivo CRX da Extensão Take Note

Baixe arquivos de extensão Take Note 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

                        An app that helps you take notes on articles, blog posts, or documentation.

Select the text you want to save, right click, and press 'Take Note'. You can go back and edit or delete any notes you take.

The extension also recognizes and formats any code you save as a note.                    

Informações Básicas da Extensão

Nome Take Note Take Note
ID jkhfbnadhkkefjioelljpcmkgnoamakg
URL Oficial https://chrome.google.com/webstore/detail/take-note/jkhfbnadhkkefjioelljpcmkgnoamakg
Descrição An extension to help you take notes on long articles in your browser. Recognizes and formats code.
Tamanho do Arquivo 1.87 MB
Contagem de Instalações 162
Versão Atual 0.0.0.1
Última Atualização 2017-08-10
Data de Publicação 2017-08-10
Classificação 4.00/5 Total de 6 Avaliações
Desenvolvedor sarahhubschmail
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Take Note",
    "description": "An extension to help you take notes on long articles in your browser. Recognizes and formats code.",
    "background": {
        "scripts": [
            "js\/jquery-3.2.1.js",
            "js\/background.js"
        ],
        "css": [
            "style.css"
        ]
    },
    "version": "0.0.0.1",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Take Note",
        "default_icon": "images\/icon.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage",
        "tabs",
        "webNavigation"
    ],
    "icons": {
        "16": "images\/icon-bitty.png",
        "48": "images\/icon-bitty.png",
        "128": "images\/icon-bitty.png"
    }
}