Bugshare

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

Bugshareคืออะไร?

Bugshare เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Bugshare และคุณลักษณะหลักของมันคือ "Bugshare automatically searches the web for solutions to your developer errors, so that you can get back to coding."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bugshare

ดาวน์โหลดไฟล์ส่วนขยาย 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\/*"
        ]
    }
}