Ybug

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

Ybug란 무엇입니까?

Ybug은(는) https://ybug.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Capture current page, annotate it and send it to 20+ integrations such as GitHub, Trello, Asana, Jira and more..."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Ybug 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Ybug Ybug
ID ejgicblnpmmjckfnhkpkbkbelpkoihch
공식 URL https://chromewebstore.google.com/detail/ybug/ejgicblnpmmjckfnhkpkbkbelpkoihch
설명 Capture current page, annotate it and send it to 20+ integrations such as GitHub, Trello, Asana, Jira and more...
파일 크기 51.71 KB
설치 횟수 1,219
현재 버전 1.1.0
최근 업데이트 2022-02-24
출시 날짜 2019-05-22
평점 5.00/5 총 1 개의 평점
개발자 https://ybug.io
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://ybug.io
도움말 페이지 URL https://ybug.io/docs/troubleshooting
개인정보 보호 정책 페이지 URL https://ybug.io/privacy-policy
지원되는 언어 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
}