Tracey - Bug Cop for Trello

'Tracey - Bug Cop' - Putting Bugs behind Bars since 2016

Co to jest Tracey - Bug Cop for Trello?

Tracey - Bug Cop for Trello to rozszerzenie Chrome opracowane przez https://www.traceybugcop.com, a jego główną funkcją jest „'Tracey - Bug Cop' - Putting Bugs behind Bars since 2016”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Tracey - Bug Cop for Trello

Pobierz pliki rozszerzeń Tracey - Bug Cop for Trello w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Tracey is a visual bug tracker for browser based issues.

You visually pinpoint the issue/task/bug in the browser and then manage the issue using Trello.

If you use Tracey regularly please consider buying me a coffee. I have spent 1000's of dollars and hundreds of hours working on Tracey.

https://www.buymeacoffee.com/tracey.bug.cop

VERSION 0.5 UPDATES:

Version 0.5.4
- Fixed "Trello List not found" error not disappearing once fixed

Version 0.5.3
- Fixed "Trello List not found" issue

Version 0.5.2
- Fixed Trello "Wildcard" Login issue

Version 0.5.1
- Fixed Conflict with Grammarly Plugin                    

Podstawowe informacje o rozszerzeniu

Nazwa Tracey - Bug Cop for Trello Tracey - Bug Cop for Trello
ID booiapffgjfohmjalmkkndnpkkkfoain
Oficjalny URL https://chromewebstore.google.com/detail/tracey-bug-cop-for-trello/booiapffgjfohmjalmkkndnpkkkfoain
Opis 'Tracey - Bug Cop' - Putting Bugs behind Bars since 2016
Rozmiar pliku 535 KB
Liczba instalacji 271
Aktualna Wersja 0.5.4
Ostatnia Aktualizacja 2022-07-16
Data Publikacji 2020-02-05
Ocena 4.95/5 Łącznie 19 Oceny
Deweloper https://www.traceybugcop.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.traceybugcop.com
Adres URL Strony Pomocy https://www.traceybugcop.com
Adres URL Strony Polityki Prywatności https://www.grzz.com.au/privacy-policy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tracey - Bug Cop for Trello",
    "description": "'Tracey - Bug Cop' - Putting Bugs behind Bars since 2016",
    "version": "0.5.4",
    "browser_action": {
        "default_icon": "static\/icon128.png",
        "default_popup": "popup\/popup.html",
        "default_title": "Tracey - Bug Cop"
    },
    "icons": {
        "128": "static\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "content\/content.css"
            ],
            "js": [
                "content\/content.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/trello.com\/1\/token\/approve"
            ],
            "js": [
                "content\/content-gettoken.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "permissions": [
        "notifications",
        "storage",
        "",
        "system.display"
    ],
    "web_accessible_resources": [
        "static\/*",
        "content\/content.css",
        "content\/popup_.css"
    ]
}