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 هو إضافة Chrome تم تطويرها بواسطة Erick Perez، والميزة الرئيسية لها هي "Copies all visible issue titles as links. Works with Jira, GitHub, Google Issue Tracker, and more!".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Bug Tracker Issue Copier

قم بتنزيل ملفات الامتداد Bug Tracker Issue Copier بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
البريد الإلكتروني [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"
    }
}