Bug Tracker Issue Copier

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

Co je Bug Tracker Issue Copier?

Bug Tracker Issue Copier je rozšíření Chrome vyvinuté Erick Perez, a jeho hlavní funkcí je „Copies all visible issue titles as links. Works with Jira, GitHub, Google Issue Tracker, and more!“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Bug Tracker Issue Copier

Stáhněte si soubory rozšíření Bug Tracker Issue Copier ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Bug Tracker Issue Copier Bug Tracker Issue Copier
ID koanoolibihaieacodfefmfpcjccicam
Oficiální URL https://chromewebstore.google.com/detail/bug-tracker-issue-copier/koanoolibihaieacodfefmfpcjccicam
Popis Copies all visible issue titles as links. Works with Jira, GitHub, Google Issue Tracker, and more!
Velikost souboru 138 KB
Počet instalací 69
Aktuální Verze 1.4.19
Poslední Aktualizace 2024-01-17
Datum Vydání 2020-01-26
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Erick Perez
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    }
}