Capture

Save your tabs away, along with notes, for future use.

O que é Capture?

Capture é uma extensão do Chrome desenvolvida por Jared Harp, e sua principal característica é "Save your tabs away, along with notes, for future use.".

Capturas de Tela da Extensão

Baixar o arquivo CRX da Extensão Capture

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

                        Do you constantly have too many tabs open, but hesitate to close them because you don't want to forget about their content? Are you writing a paper and want an easy way to save all your sources? Are you tired of the limitations of bookmarks in modern web browsers? Do you wish you could save your notes *with* websites, so that you can easily open the background reference for your ideas? If so, give Capture a try!
      
Capture lets you save a tab away, along with a note, for future use. You can also add tags to notes to easily filter through them.
                         
When on a website, press Alt+S or click the extension's icon to open a popup. Here you can type the note you'd like to associate to this tab/website. You can also add tags by prefacing some text with a #. Then, click Save.    
      
Each site + note combination is called a "Snip". One of the main reasons to use Capture is that it bundles a site and note together, letting you easily go back to the site you took your note on.
         
After clicking Save, you then can press the Open Snips button to get the main page of the extension. Here, you can see all of your snips, delete a snip, filter by tags, and reopen any website associated with a note (the titles are clickable links). In essence: you get all your notes, with the background references just one click away.
      
There is also an Export All Snips button, so that your data never gets stuck in the extension. The Contact button can tell you how to report a bug, get in touch, or even contribute -- as Capture is 100% open source!      
           
I hope you enjoy using Capture as much as I do. Personally, I use it to keep my tab count down as I learn about new things. I like to try to summarize or explain a website's content before I actually close it. That way, I can be more sure that I am not just forgetting everything as I close my tabs. I have always found that trying to explain content is a great way to internalize it. Plus, if I ever come back to the information, I have a handy summary of what I was learning about; and the tag system helps me stay organized. However you decide to use Capture though -- I do hope you find it a pleasant experience!
             
Best,           
Jared Harp  
Capture Developer                    

Informações Básicas da Extensão

Nome Capture Capture
ID egjcclpcljpdolmileljdlacgihomfbf
URL Oficial https://chrome.google.com/webstore/detail/capture/egjcclpcljpdolmileljdlacgihomfbf
Descrição Save your tabs away, along with notes, for future use.
Tamanho do Arquivo 71.15 KB
Contagem de Instalações 43
Versão Atual 1.0
Última Atualização 2019-03-20
Data de Publicação 2019-03-20
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Jared Harp
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Capture",
    "version": "1.0",
    "description": "Save your tabs away, along with notes, for future use.",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "images\/Capture16.png",
            "32": "images\/Capture32.png",
            "48": "images\/Capture48.png",
            "128": "images\/Capture128.png"
        }
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+S",
                "mac": "Alt+S"
            },
            "description": "Opens popup.html"
        }
    },
    "icons": {
        "16": "images\/Capture16.png",
        "32": "images\/Capture32.png",
        "48": "images\/Capture48.png",
        "128": "images\/Capture128.png"
    }
}