OctoTicket
Add asana ticket numbers on Ctrl-Space
What is OctoTicket?
OctoTicket is a Chrome extension developed by Drebot, and its main feature is "Add asana ticket numbers on Ctrl-Space".
Extension Screenshots
Download OctoTicket Extension CRX File
Download OctoTicket extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | OctoTicket |
ID | dejmonfcadndjgfgkemabednodepjgni |
Official URL | https://chromewebstore.google.com/detail/octoticket/dejmonfcadndjgfgkemabednodepjgni |
Description | Add asana ticket numbers on Ctrl-Space |
File Size | 65.98 KB |
Installation Count | 69 |
Current Version | 1.2 |
Last Updated | 2023-05-08 |
Publish Date | 2022-02-02 |
Developer | Drebot |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/Dotrar/Asana-Ticket-Generator |
Help Page URL | https://github.com/Dotrar/Asana-Ticket-Generator/issues |
Supported Languages | 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" ] } ] } |