Animus
Chrome Extension for instantly storing and filtering your ideas, todos, links, check-laters.
Animus란 무엇입니까?
Animus은(는) David da Silva Contín에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome Extension for instantly storing and filtering your ideas, todos, links, check-laters."입니다.
확장 프로그램 스크린샷
Animus 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | Animus |
ID | hhlengghgfcjkfkfaocfnimlhnkjddch |
공식 URL | https://chromewebstore.google.com/detail/animus/hhlengghgfcjkfkfaocfnimlhnkjddch |
설명 | Chrome Extension for instantly storing and filtering your ideas, todos, links, check-laters. |
파일 크기 | 411 KB |
설치 횟수 | 18 |
현재 버전 | 0.4.0 |
최근 업데이트 | 2019-03-08 |
출시 날짜 | 2019-03-08 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | David da Silva Contín |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/dasilvacontin/animus |
도움말 페이지 URL | https://github.com/dasilvacontin/animus |
지원되는 언어 | 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" ] } |