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ファイルをダウンロード
Animus拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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" ] } |