bugzilla-github-extension

This extension integrates GitHub and Bugzilla

Τι είναι το bugzilla-github-extension;

Το bugzilla-github-extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Clango, Inc., και η κύρια λειτουργία του είναι "This extension integrates GitHub and Bugzilla".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης bugzilla-github-extension

Λήψη αρχείων επέκτασης bugzilla-github-extension σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Integrates Bugzilla and GitHub to make your life easier. It is a work in progress, so feel free to contribute: https://github.com/ditinc/bugzilla-github-extension

Features - Bugzilla:

- If GitHub Pull Request URL is populated with the pull request's URL, then a link will be added to the bug's title
- There is a button for marking selected bugs as duplicates when changing several bugs at once

Features - GitHub:

- If the repository is associated with a Bugzilla product:
  - The Product will be listed under the repository name
  - There will be buttons to jump to Bugzilla lists of unresolved or resolved bugs
- If the pull request's title includes the bug number (ex: 83513, [83513], Bug 83513, Bug85313) or if the branch contains the bug number (ex: bug_83513, Bug-83513, bug83513):
  - Bug number in title will be a link to the bug
  - Bugzilla section added to side listing some bug details
  - Comments will be sent to Bugzilla along with the Hours Worked entered in a new input added next to the comment buttons
    - This includes line comments, though they do not have an Hours Worked field
  - Have the option of setting but to RESOLVED FIXED when making a pull request comment
- When creating a pull request, you have the option to:
  - Update the GitHub Pull Request URL on the bug in Bugzilla
  - Send the comment to Bugzilla
- When merging a pull request, you have the option to:
  - Update the Code Status in Bugzilla 
  - Update the bug to RESOLVED TESTED
  - Labels are pushed to the GitHub Labels field on the bug
- If the release's comments include bug numbers (ex: 83513, [83513], [83513], [83513]):
  - Have the option of setting to In Staging or In Production in Bugzilla
  - Have the option of updating Release field in Bugzilla
... and more!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα bugzilla-github-extension bugzilla-github-extension
ID ofkjoeocpbkpamfhbfmgglkhhincgbdj
Επίσημο URL https://chromewebstore.google.com/detail/bugzilla-github-extension/ofkjoeocpbkpamfhbfmgglkhhincgbdj
Περιγραφή This extension integrates GitHub and Bugzilla
Μέγεθος Αρχείου 84.69 KB
Αριθμός Εγκαταστάσεων 97
Τρέχουσα Έκδοση 2.1.1
Τελευταία Ενημέρωση 2022-06-28
Ημερομηνία Δημοσίευσης 2020-01-26
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Clango, Inc.
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/ditinc/bugzilla-github-extension
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "bugzilla-github-extension",
    "short_name": "BZ<->GH",
    "description": "This extension integrates GitHub and Bugzilla",
    "version": "2.1.1",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "images\/icon48.png",
        "default_title": "bugzilla-github-extension",
        "default_popup": "src\/browser-action.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "lib\/jquery-3.3.1.min.js",
                "src\/globals.js",
                "src\/content-script.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "src\/injected.js",
                "images\/icon48.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/*\/",
        "http:\/\/*\/"
    ],
    "options_ui": {
        "page": "src\/options.html"
    }
}