OctoTicket

Add asana ticket numbers on Ctrl-Space

OctoTicket क्या है?

OctoTicket Drebot द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add asana ticket numbers on Ctrl-Space"।

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

screenshot

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

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

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

                        This extension will allow you to generate asana ticket numbers. You can do so by configuring your team and the prefix in the settings. Asana does not currently have this logic built in.

When writing an asana ticket name description, press Ctrl-Space to generate a ticket number with your prefix.

The source code is available here:
https://github.com/Dotrar/Asana-Ticket-Generator                    

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

नाम OctoTicket OctoTicket
ID dejmonfcadndjgfgkemabednodepjgni
आधिकारिक URL https://chromewebstore.google.com/detail/octoticket/dejmonfcadndjgfgkemabednodepjgni
विवरण Add asana ticket numbers on Ctrl-Space
फ़ाइल का आकार 65.98 KB
स्थापना संख्या 69
वर्तमान संस्करण 1.2
अंतिम अपडेट 2023-05-08
प्रकाशन तिथि 2022-02-02
डेवलपर Drebot
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Dotrar/Asana-Ticket-Generator
सहायता पृष्ठ URL https://github.com/Dotrar/Asana-Ticket-Generator/issues
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "OctoTicket",
    "description": "Add asana ticket numbers on Ctrl-Space",
    "version": "1.2",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.asana.com\/*"
            ],
            "js": [
                "asana-ticket.js"
            ]
        }
    ]
}