Asana Expander

Automatically show all comments on an Asana task an expand longer comments.

Asana Expander क्या है?

Asana Expander Stefan Zweifel द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically show all comments on an Asana task an expand longer comments."।

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

screenshot
screenshot

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

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

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

                        Do you also hate to click on those "See more" links in Asana, just to see the last sentence of a longer comment? Or did you also miss an important comment in a longer comment thread in an Asana Task?

This extension solves this problem my automatically clicking on those links whenever you open a task with many comments or when a comment is longer than 300 characters.

Note: The extension currently doesn't work in Asana's Inbox view.                    

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

नाम Asana Expander Asana Expander
ID goplcobjbaafmhoadgihbepeejbajbki
आधिकारिक URL https://chromewebstore.google.com/detail/asana-expander/goplcobjbaafmhoadgihbepeejbajbki
विवरण Automatically show all comments on an Asana task an expand longer comments.
फ़ाइल का आकार 11.61 KB
स्थापना संख्या 242
वर्तमान संस्करण 3.0.0
अंतिम अपडेट 2023-06-30
प्रकाशन तिथि 2020-04-17
रेटिंग 4.80/5 कुल 5 रेटिंग्स
डेवलपर Stefan Zweifel
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/stefanzweifel/asana-expander-extension
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Automatically show all comments on an Asana task an expand longer comments.",
    "version": "3.0.0",
    "name": "Asana Expander",
    "homepage_url": "https:\/\/github.com\/stefanzweifel\/asana-expander-extension",
    "manifest_version": 3,
    "icons": {
        "16": "icon\/16.png",
        "32": "icon\/32.png",
        "48": "icon\/48.png",
        "96": "icon\/96.png",
        "128": "icon\/128.png"
    },
    "permissions": [
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/*.asana.com\/*"
    ],
    "background": {
        "service_worker": "src\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.asana.com\/*"
            ],
            "js": [
                "src\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "__chrome|firefox__author": "Stefan Zweifel",
    "__opera__developer": {
        "name": "Stefan Zweifel"
    },
    "__firefox__applications": {
        "gecko": {
            "id": "{754FB1AD-CC3B-4856-B6A0-7786F8CA9D20}"
        }
    }
}