Bug Monitor

Monitor Bug Changes

Τι είναι το Bug Monitor;

Το Bug Monitor είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον vance.steve, και η κύρια λειτουργία του είναι "Monitor Bug Changes".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Bug Monitor

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

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

                        Refreshes bug list from bugdb query.  Shows notification when changes are found.  Displays details of changes.

Useful when monitoring your own bug queue or if you need to monitor bugs not assigned to you.

To use:
In chrome browser, open tab with bugdb url showing bugdb query you want to monitor.  (eg: bugs assigned to me)

Bug results on page need to include columns: Num, Tags, Assignee, Sev, St, and Subject.

From Bug Monitor extension, click to open popup, then click 'Start'.

The Bug Monitor extension will refresh the browser tab, default time is every 2 minutes.  If there are any changes in the bug list before and after the refresh the Bug Monitor extension will display a notification of any new, updated, or removed bugs.  From the notification, you can click 'Continue monitoring', where you will not be notified again until another change is detected.  Or you can click 'View changes' the changes which will bring the browser tab to focus.

To view details of changes you can click on the Bug Monitor extension to open it, then click 'latest' to view details of latest changes.                    

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

Όνομα Bug Monitor Bug Monitor
ID mgcbkchnpjmfkeihikdgjnemkbblladi
Επίσημο URL https://chromewebstore.google.com/detail/bug-monitor/mgcbkchnpjmfkeihikdgjnemkbblladi
Περιγραφή Monitor Bug Changes
Μέγεθος Αρχείου 74 KB
Αριθμός Εγκαταστάσεων 14
Τρέχουσα Έκδοση 1.2.5
Τελευταία Ενημέρωση 2019-10-23
Ημερομηνία Δημοσίευσης 2019-10-23
Προγραμματιστής vance.steve
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bug Monitor",
    "description": "Monitor Bug Changes",
    "version": "1.2.5",
    "version_name": "1.2.5",
    "author": "Steve Vance",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/BugMonitorIcon16.png",
            "24": "images\/BugMonitorIcon24.png",
            "32": "images\/BugMonitorIcon32.png",
            "48": "images\/BugMonitorIcon48.png",
            "80": "images\/BugMonitorIcon80.png",
            "128": "images\/BugMonitorIcon80.png"
        }
    },
    "icons": {
        "16": "images\/BugMonitorIcon16.png",
        "24": "images\/BugMonitorIcon24.png",
        "32": "images\/BugMonitorIcon32.png",
        "48": "images\/BugMonitorIcon48.png",
        "80": "images\/BugMonitorIcon80.png",
        "128": "images\/BugMonitorIcon80.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_page": "options.html",
    "permissions": [
        "",
        "alarms",
        "notifications",
        "storage",
        "tabs",
        "unlimitedStorage"
    ]
}