Animus
Chrome Extension for instantly storing and filtering your ideas, todos, links, check-laters.
O que é Animus?
Animus é uma extensão do Chrome desenvolvida por David da Silva Contín, e sua principal característica é "Chrome Extension for instantly storing and filtering your ideas, todos, links, check-laters.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Animus
Baixe arquivos de extensão Animus 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
Chrome Extension for instantly storing and filtering your ideas, todos, links, check-laters. You'll wish you could use animus everywhere. Features - Hashtags and URLs are parsed from the entries' text - Fully usable via keyboard shortcuts - Filter entries by text and hashtags - Storage sync with your Google Account - Quickly opens using a single command Roadmap - Make it fully usable without the need of key shortcuts - Command for saving current website title and url as an entry - GitHub integrations, eg repo/issue/PR status in entries with a GH link - Translucent background - Progress bars for entries - Reminders via natural language processing - Tests, specially those related to editing the database
Informações Básicas da Extensão
Nome | Animus |
ID | hhlengghgfcjkfkfaocfnimlhnkjddch |
URL Oficial | https://chromewebstore.google.com/detail/animus/hhlengghgfcjkfkfaocfnimlhnkjddch |
Descrição | Chrome Extension for instantly storing and filtering your ideas, todos, links, check-laters. |
Tamanho do Arquivo | 411 KB |
Contagem de Instalações | 18 |
Versão Atual | 0.4.0 |
Última Atualização | 2019-03-08 |
Data de Publicação | 2019-03-08 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | David da Silva Contín |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/dasilvacontin/animus |
URL da Página de Ajuda | https://github.com/dasilvacontin/animus |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Animus", "description": "Chrome Extension for instantly storing and filtering your ideas, todos, links, check-laters.", "version": "0.4.0", "manifest_version": 2, "icons": { "48": "img\/logo48.png", "128": "img\/logo128.png" }, "browser_action": { "default_icon": { "19": "img\/logo38.png", "38": "img\/logo38.png" } }, "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "toggle-animus": { "suggested_key": { "default": "Ctrl+Shift+A", "mac": "MacCtrl+Shift+A" }, "description": "Toggle Animus" }, "save-website": { "suggested_key": { "default": "Alt+Shift+A" }, "description": "Save current website as entry" } }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "bundle.js" ], "css": [ "all.css" ] } ], "homepage_url": "https:\/\/github.com\/dasilvacontin\/animus", "offline_enabled": true, "permissions": [ "storage", "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ "all.css.map", "bundle.js.map", "fonts\/*", "img\/logo38.png" ] } |