Bug Report
This extension gets the browser details and writes a bug report.
Τι είναι το Bug Report;
Το Bug Report είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον alfie84, και η κύρια λειτουργία του είναι "This extension gets the browser details and writes a bug report.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Bug Report
Λήψη αρχείων επέκτασης Bug Report σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This is a simple extension to generate a bug report automatically. Sometimes the end users report issues by email without any screenshots or steps and makes it hard for the developers / testers to replicate the issue. The purpose of this is to auto-generate useful information for the developers / testers when an issue is found.
Usage:
1. Fill the Description
2. Fill the Steps
3. Click "Save As" to save as PDF
4. Send Report Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| ID | kgjmpflejlpefbangkefecjdflfapdmp |
| Επίσημο URL | https://chromewebstore.google.com/detail/bug-report/kgjmpflejlpefbangkefecjdflfapdmp |
| Περιγραφή | This extension gets the browser details and writes a bug report. |
| Μέγεθος Αρχείου | 13.41 KB |
| Αριθμός Εγκαταστάσεων | 34 |
| Τρέχουσα Έκδοση | 1.4 |
| Τελευταία Ενημέρωση | 2023-12-06 |
| Ημερομηνία Δημοσίευσης | 2019-01-17 |
| Προγραμματιστής | alfie84 |
| Ηλεκτρονικό ταχυδρομείο | [email protected] |
| Τύπος Πληρωμής | free |
| Υποστηριζόμενες Γλώσσες | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Bug Report",
"version": "1.4",
"description": "This extension gets the browser details and writes a bug report.",
"permissions": [
"activeTab"
],
"manifest_version": 3,
"background": {
"service_worker": "service_worker.js",
"type": "module"
},
"action": {
"default_icon": {
"16": "images\/bug_icon16.png",
"48": "images\/bug_icon48.png",
"128": "images\/bug_icon128.png"
}
},
"icons": {
"16": "images\/bug_icon16.png",
"48": "images\/bug_icon48.png",
"128": "images\/bug_icon128.png"
}
} | |