Bugshare

Bugshare automatically searches the web for solutions to your developer errors, so that you can get back to coding.

Bugshare란 무엇입니까?

Bugshare은(는) Bugshare에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Bugshare automatically searches the web for solutions to your developer errors, so that you can get back to coding."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Are bugs slowing you down during development? Bugshare searches the web for solutions to your developer errors, so that you can get back to coding.

SUPPORTED PLATFORMS 👨‍💻
- Bugshare is currently only able to detect and find solutions to .NET, Laravel, Flask, Django and Ruby on Rails errors


TEAMS 💻
Use Bugshare in your web development teams to collaborative share knowledge to the bugs you fix.

- Perfect for teams working remotely
- Collaborate easily with other team members to fix and share solutions to bugs 
- Monthly productivity reports, so you can measure the impact of Bugshare on your team
- View time spent fixing bugs, time saved, people helped, costs saved and much more


SUPPORT 🦮
For any bugs, queries or feedback please visit us at

https://bugshare.io
Or contact us:  [email protected]                    

확장 프로그램 기본 정보

이름 Bugshare Bugshare
ID gekpjccglmnfkpkphololcebgmiagjlp
공식 URL https://chromewebstore.google.com/detail/bugshare/gekpjccglmnfkpkphololcebgmiagjlp
설명 Bugshare automatically searches the web for solutions to your developer errors, so that you can get back to coding.
파일 크기 6.92 MB
설치 횟수 79
현재 버전 1.1.0
최근 업데이트 2021-06-21
출시 날짜 2020-11-24
평점 5.00/5 총 7 개의 평점
개발자 Bugshare
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://bugshare.io
도움말 페이지 URL https://bugshare.io/about/faq
개인정보 보호 정책 페이지 URL https://bugshare.io/about/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "minimum_chrome_version": "50",
    "name": "Bugshare",
    "description": "Bugshare automatically searches the web for solutions to your developer errors, so that you can get back to coding.",
    "version": "1.1.0",
    "author": "Uchenna Okafor",
    "homepage_url": "https:\/\/bugshare.io",
    "icons": {
        "16": "assets\/images\/icons\/logo-16.png",
        "48": "assets\/images\/icons\/logo-48.png",
        "128": "assets\/images\/icons\/logo-128.png"
    },
    "browser_action": {
        "default_title": "Bugshare",
        "default_popup": "pages\/popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "pages\/options.html",
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webRequest",
        "contextMenus",
        "system.cpu",
        "system.memory",
        "idle",
        "alarms"
    ],
    "web_accessible_resources": [
        "pages\/*.html"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.bugshare.io\/*",
            "*:\/\/*.bugshare.local\/*",
            "https:\/\/localhost\/*"
        ]
    }
}