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文件

下载Bugshare扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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\/*"
        ]
    }
}