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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}