BugShot

Capture visual bugs and report it to redmine.

BugShotคืออะไร?

BugShot เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://cloudogu.com และคุณลักษณะหลักของมันคือ "Capture visual bugs and report it to redmine."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย BugShot

ดาวน์โหลดไฟล์ส่วนขยาย BugShot ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Website testing made easier: BugShot for Redmine makes reporting bugs straightforward and convenient. Thanks to a minimal workflow, BugShot for Redmine helps save valuable time when testing websites.

PREPARATION:
Just add BugShot for Redmine to your Chrome Extensions, and check "Enable REST web service" once in the Redmine settings under API.
 
THIS IS HOW IT WORKS:
Enter the url of your Redmine and log in with your account. Username and password have to be entered only once, because BugShot reads the Api Key of the user from Redmine with this data and stores it encrypted. BugShot then uses the Api Key for further communication with Redmine.

Create a reference ticket with the parameters of the website to be tested and the default template is already created in Redmine for each error found. Of course, additional tickets can be created or existing tickets can be used as reference. 
 
Detected bugs can now be captured using the BugShot button or shortcut (Windows/Linux Shift+Ctrl+S and Mac Shift+Command+S) and the generated screenshot can be commented directly using the paint and label function.

Now just fill in the subject and description of the error and submit it.

The created ticket can then be viewed in Redmine. Benefit: URL and browser resolution will no longer be forgotten in the future, because Bugshot automatically attaches this information to the ticket.


ABOUT CLOUDOGU 

At Cloudogu we believe in good software development through innovation, open source, agility, DevOps and community.
Our team of approximately 50 members enjoy sharing their knowledge and new insights in our community, blog, training and consulting - Whether on-site in the heart of Brunswick, Germany or remotely. Our topics are DevOps, GitOps, Agile, Security and technologies like Kubernetes and Docker. It all comes together in our open source projects, the Cloudogu EcoSystem and SCM-Manager.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ BugShot BugShot
ID dpehgggbpmclbfgaapnllihhhbcllknb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/bugshot/dpehgggbpmclbfgaapnllihhhbcllknb
คำอธิบาย Capture visual bugs and report it to redmine.
ขนาดไฟล์ 527 KB
จำนวนการติดตั้ง 39
เวอร์ชันปัจจุบัน 0.4.0
อัปเดตครั้งล่าสุด 2022-08-04
วันที่เผยแพร่ 2022-03-18
คะแนน 5.00/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา https://cloudogu.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/cloudogu/bugshot
ภาษาที่รองรับ de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "BugShot",
    "version": "0.4.0",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "images\/bugshot-icon-16x16.png",
            "24": "images\/bugshot-icon-24x24.png",
            "32": "images\/bugshot-icon-32x32.png",
            "64": "images\/bugshot-icon-64x64.png",
            "128": "images\/bugshot-icon-128x128.png",
            "256": "images\/bugshot-icon-256x256.png",
            "512": "images\/bugshot-icon-512x512.png"
        },
        "default_title": "__MSG_appDefaultTitle__",
        "default_popup": "connection.html"
    },
    "icons": {
        "16": "images\/bugshot-icon-16x16.png",
        "24": "images\/bugshot-icon-24x24.png",
        "32": "images\/bugshot-icon-32x32.png",
        "64": "images\/bugshot-icon-64x64.png",
        "128": "images\/bugshot-icon-128x128.png",
        "256": "images\/bugshot-icon-256x256.png",
        "512": "images\/bugshot-icon-512x512.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "notifications"
    ],
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Shift+Ctrl+S",
                "mac": "Shift+Command+S"
            }
        }
    }
}