Ybug

Capture current page, annotate it and send it to 20+ integrations such as GitHub, Trello, Asana, Jira and more...

Co je Ybug?

Ybug je rozšíření Chrome vyvinuté https://ybug.io, a jeho hlavní funkcí je „Capture current page, annotate it and send it to 20+ integrations such as GitHub, Trello, Asana, Jira and more...“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Ybug

Stáhněte si soubory rozšíření Ybug ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Capture current page, annotate it and send it to 20+ integrations such as GitHub, Trello, Asana, Jira and more...  

Get our brilliantly simple Feedback Widget for end users and a browser extension for testers and web developers (browser extension functionality now available for non-registered users, too!).  

Collect feedback, suggestions and bug reports from your users, clients and teammates. Take screenshot of your current page, annotate it and send it to 20+ bug tracking or project management tools such as Asana, GitHub, Trello, Jira... Ybug automatically includes browser and environment details for you.                    

Základní Informace o Rozšíření

Název Ybug Ybug
ID ejgicblnpmmjckfnhkpkbkbelpkoihch
Oficiální URL https://chromewebstore.google.com/detail/ybug/ejgicblnpmmjckfnhkpkbkbelpkoihch
Popis Capture current page, annotate it and send it to 20+ integrations such as GitHub, Trello, Asana, Jira and more...
Velikost souboru 51.71 KB
Počet instalací 1,219
Aktuální Verze 1.1.0
Poslední Aktualizace 2022-02-24
Datum Vydání 2019-05-22
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář https://ybug.io
E-mail [email protected]
Typ Platby in_app
Webové stránky Rozšíření https://ybug.io
URL Stránky Nápovědy https://ybug.io/docs/troubleshooting
URL Stránky Zásad Ochrany Soukromí https://ybug.io/privacy-policy
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Capture current page, annotate it and send it to 20+ integrations such as GitHub, Trello, Asana, Jira and more...",
    "version": "1.1.0",
    "name": "Ybug",
    "short_name": "Ybug",
    "author": "Ybug",
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.bundle.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "annotate.bundle.js"
            ],
            "matches": [
                "*:\/\/ybug-dev.io\/*",
                "*:\/\/ybug.io\/*"
            ]
        },
        {
            "js": [
                "content.bundle.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/ybug-dev.io\/*",
            "*:\/\/ybug.io\/*"
        ]
    },
    "browser_action": {
        "default_icon": "icon-32.png",
        "default_title": "Ybug (Alt+Y)"
    },
    "commands": {
        "_execute_browser_action": {
            "description": "Take screenshot",
            "suggested_key": {
                "default": "Alt+Y",
                "mac": "Alt+Y"
            }
        }
    },
    "permissions": [
        "",
        "activeTab",
        "*:\/\/ybug-dev.io\/*",
        "*:\/\/ybug.io\/*"
    ],
    "manifest_version": 2
}