Ybug

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

Cos'è Ybug?

Ybug è un'estensione di Chrome sviluppata da https://ybug.io, e la sua funzione principale è "Capture current page, annotate it and send it to 20+ integrations such as GitHub, Trello, Asana, Jira and more...".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Ybug

Scarica i file di estensione Ybug in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Ybug Ybug
ID ejgicblnpmmjckfnhkpkbkbelpkoihch
URL Ufficiale https://chromewebstore.google.com/detail/ybug/ejgicblnpmmjckfnhkpkbkbelpkoihch
Descrizione Capture current page, annotate it and send it to 20+ integrations such as GitHub, Trello, Asana, Jira and more...
Dimensione del File 51.71 KB
Conteggio Installazioni 1,219
Versione Corrente 1.1.0
Ultimo Aggiornamento 2022-02-24
Data di Pubblicazione 2019-05-22
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://ybug.io
Email [email protected]
Tipo di Pagamento in_app
Sito Web dell'Estensione https://ybug.io
URL della Pagina di Aiuto https://ybug.io/docs/troubleshooting
URL della Pagina della Politica sulla Privacy https://ybug.io/privacy-policy
Lingue Supportate 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
}