OctoTicket
Add asana ticket numbers on Ctrl-Space
Qu'est-ce que OctoTicket ?
OctoTicket est une extension Chrome développée par Drebot, et sa fonction principale est "Add asana ticket numbers on Ctrl-Space".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension OctoTicket
Téléchargez les fichiers d'extension OctoTicket au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | OctoTicket |
ID | dejmonfcadndjgfgkemabednodepjgni |
URL Officiel | https://chromewebstore.google.com/detail/octoticket/dejmonfcadndjgfgkemabednodepjgni |
Description | Add asana ticket numbers on Ctrl-Space |
Taille du Fichier | 65.98 KB |
Nombre d'Installations | 69 |
Version Actuelle | 1.2 |
Dernière Mise à Jour | 2023-05-08 |
Date de Publication | 2022-02-02 |
Développeur | Drebot |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Dotrar/Asana-Ticket-Generator |
URL de la Page d'Aide | https://github.com/Dotrar/Asana-Ticket-Generator/issues |
Langues Prises en Charge | 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" ] } ] } |