BugSol - A Bug Reporting Tool

A Bug Reporting Tool

ما هو BugSol - A Bug Reporting Tool؟

BugSol - A Bug Reporting Tool هو إضافة Chrome تم تطويرها بواسطة Qodic، والميزة الرئيسية لها هي "A Bug Reporting Tool".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة BugSol - A Bug Reporting Tool

قم بتنزيل ملفات الامتداد BugSol - A Bug Reporting Tool بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        BugSol is a Trello-based bug reporting tool, making it easy for developers and clients to collaborate better. 

BugSol was developed by a team of developers who knew how difficult software testing & pointing out bugs can get. This tool uses one of the most popular project & bug tracking system, Trello.

With a click of a button, you can integrate BugSol with their Trello account. Then to report a bug, just take a screenshot of the bug, annotate the screenshot if required and save it to your Trello card. You can set the default board to which the screenshot will be saved to.

We have developed this tool with just the developers' and clients' point of views. So in case you have any suggestions or feedback to make this tool better, then feel free to contact us. And don't forget to RATE US 5 STARS. You reviews matter a lot.                    

معلومات أساسية عن التمديد

الاسم BugSol - A Bug Reporting Tool BugSol - A Bug Reporting Tool
ID bifbncoednkenflmljidoigbnkagmjjd
عنوان URL الرسمي https://chromewebstore.google.com/detail/bugsol-a-bug-reporting-to/bifbncoednkenflmljidoigbnkagmjjd
الوصف A Bug Reporting Tool
حجم الملف 1.02 MB
عدد التثبيتات 87
النسخة الحالية 1.4
آخر تحديث 2022-07-11
تاريخ النشر 2018-08-25
تقييم 5.00/5 مجموع تقييمات 1
المطور Qodic
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.4",
    "name": "BugSol - A Bug Reporting Tool",
    "default_locale": "en",
    "description": "A Bug Reporting Tool",
    "minimum_chrome_version": "6.0",
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "tabs",
        "",
        "unlimitedStorage",
        "desktopCapture",
        "cookies",
        "downloads"
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/icon32.png",
            "38": "images\/icon38.png"
        },
        "default_title": "BugSol - A Bug Reporting Tool",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/api.trello.com https:\/\/ajax.googleapis.com  https:\/\/platform.twitter.com; object-src 'self'",
    "web_accessible_resources": [
        "images\/success.gif",
        "images\/clear.png",
        "images\/icon32.png",
        "settings.html"
    ],
    "content_scripts": [
        {
            "js": [
                "javascripts\/libs\/jquery-1.7.2.min.js",
                "javascripts\/content_script.js",
                "javascripts\/libs\/dragresize.js",
                "javascripts\/libs\/jquery.draggable.js"
            ],
            "css": [
                "css\/selected.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ]
}