Animus

Chrome Extension for instantly storing and filtering your ideas, todos, links, check-laters.

Animus क्या है?

Animus David da Silva Contín द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome Extension for instantly storing and filtering your ideas, todos, links, check-laters."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Animus एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
    ]
}