OctoTicket
Add asana ticket numbers on Ctrl-Space
什么是OctoTicket?
OctoTicket是由Drebot开发的Chrome扩展程序,该扩展的主要功能是“Add asana ticket numbers on Ctrl-Space”。
扩展截图
下载OctoTicket扩展crx文件
下载OctoTicket扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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" ] } ] } |