Asana Multi Filter

Allows multiple filters to be used on an Asana List page

Asana Multi Filter क्या है?

Asana Multi Filter armando.gdev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows multiple filters to be used on an Asana List page"।

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

screenshot

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

crx प्रारूप में Asana Multi Filter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Asana task lists are wonderful, but only allow one filter at a time. This plugin reads data from an Asana list and allows you to keep only tasks that fulfill the filter criteria. Run it multiple times to filter all the way down.

How it works:
Reads Asana Spreadsheet data columns and deletes HTML rows on the front end. This does not change Asana data in any way. Refreshing the page brings everything back.

Known Issues:
Version 0.2.0
- Shift clicking remaining tasks will select hidden tasks. Ctrl + Click works fine.
- Only works on List view. I will eventually get it working on Board view, but my current needs are satisfied.
- Sometimes "Column" dropdown doesn't populate. Click "Refresh Lists" to have plugin pull data from Asana.
- Custom columns are fully supported. Assignee, Due Date, and other Asana native column names operate differently than custom columns and I don't necessarily need them to work at the moment.                    

एक्सटेंशन की मूल जानकारी

नाम Asana Multi Filter Asana Multi Filter
ID ahnnhgcedlobdmkpdckdmjkjclcifhjn
आधिकारिक URL https://chromewebstore.google.com/detail/asana-multi-filter/ahnnhgcedlobdmkpdckdmjkjclcifhjn
विवरण Allows multiple filters to be used on an Asana List page
फ़ाइल का आकार 30.68 KB
स्थापना संख्या 33
वर्तमान संस्करण 0.2.0
अंतिम अपडेट 2021-08-21
प्रकाशन तिथि 2021-08-20
डेवलपर armando.gdev
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Asana Multi Filter",
    "version": "0.2.0",
    "description": "Allows multiple filters to be used on an Asana List page",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/app.asana.com\/*\/*\/list"
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/asana_filter16.png",
            "32": "\/images\/asana_filter32.png",
            "48": "\/images\/asana_filter48.png",
            "128": "\/images\/asana_filter128.png"
        }
    },
    "icons": {
        "16": "\/images\/asana_filter16.png",
        "32": "\/images\/asana_filter32.png",
        "48": "\/images\/asana_filter48.png",
        "128": "\/images\/asana_filter128.png"
    }
}