OctoTicket

Add asana ticket numbers on Ctrl-Space

Cos'è OctoTicket?

OctoTicket è un'estensione di Chrome sviluppata da Drebot, e la sua funzione principale è "Add asana ticket numbers on Ctrl-Space".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione OctoTicket

Scarica i file di estensione OctoTicket in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome OctoTicket OctoTicket
ID dejmonfcadndjgfgkemabednodepjgni
URL Ufficiale https://chromewebstore.google.com/detail/octoticket/dejmonfcadndjgfgkemabednodepjgni
Descrizione Add asana ticket numbers on Ctrl-Space
Dimensione del File 65.98 KB
Conteggio Installazioni 69
Versione Corrente 1.2
Ultimo Aggiornamento 2023-05-08
Data di Pubblicazione 2022-02-02
Sviluppatore Drebot
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Dotrar/Asana-Ticket-Generator
URL della Pagina di Aiuto https://github.com/Dotrar/Asana-Ticket-Generator/issues
Lingue Supportate 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"
            ]
        }
    ]
}