OctoTicket

Add asana ticket numbers on Ctrl-Space

OctoTicketとは何ですか?

OctoTicketはDrebotによって開発されたChromeの拡張機能で、その主な機能は「Add asana ticket numbers on Ctrl-Space」です。

拡張機能のスクリーンショット

screenshot

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 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
Eメール [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"
            ]
        }
    ]
}