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.”。

擴展截圖

screenshot

下載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 Animus
ID hhlengghgfcjkfkfaocfnimlhnkjddch
官方網址 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"
    ]
}