Bug Tracker Issue Copier

Copies all visible issue titles as links. Works with Jira, GitHub, Google Issue Tracker, and more!

Bug Tracker Issue Copierとは何ですか?

Bug Tracker Issue CopierはErick Perezによって開発されたChromeの拡張機能で、その主な機能は「Copies all visible issue titles as links. Works with Jira, GitHub, Google Issue Tracker, and more!」です。

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

screenshot

Bug Tracker Issue Copier拡張機能のCRXファイルをダウンロード

Bug Tracker Issue Copier拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This Chrome extension is for use with Jira, GitHub, GitLab, BugTower, DoneDone, and Google's Issue Tracker (Buganizer).  It copies all issues that are currently visible in your browser over to your clipboard - link and all.  You can then paste them into an e-mail or any other document editor that supports rich text.  Useful for status reports if you find yourself doing this repetitive copy/paste dance on a daily basis.                    

拡張機能の基本情報

名前 Bug Tracker Issue Copier Bug Tracker Issue Copier
ID koanoolibihaieacodfefmfpcjccicam
公式URL https://chromewebstore.google.com/detail/bug-tracker-issue-copier/koanoolibihaieacodfefmfpcjccicam
説明 Copies all visible issue titles as links. Works with Jira, GitHub, Google Issue Tracker, and more!
ファイルサイズ 138 KB
インストール数 69
現在のバージョン 1.4.19
最終更新日 2024-01-17
公開日 2020-01-26
評価 5.00/5 合計 1 レビュー
開発者 Erick Perez
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.4.19",
    "name": "Bug Tracker Issue Copier",
    "description": "Copies all visible issue titles as links. Works with Jira, GitHub, Google Issue Tracker, and more!",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "lib\/codemirror.js",
            "lib\/mode\/xml\/xml.js",
            "lib\/mode\/htmlmixed\/htmlmixed.js",
            "lib\/mode\/css\/css.js",
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Bug Tracker Issue Copier"
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                ""
            ],
            "js": [
                "content.js",
                "modal.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}