Stethoscope

Check the health of a github repo with one easy step.

Stethoscopeคืออะไร?

Stethoscope เป็นส่วนขยายของ Chrome ที่พัฒนาโดย cmgriffing และคุณลักษณะหลักของมันคือ "Check the health of a github repo with one easy step."

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Stethoscope ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        When you go to a Github repo, the extension will check for various things on that page and give a score/grade. It is not meant to make the decision for you, it is just a quick assessment.

Here is some of the criteria we look for.
It is **important** to note that missing some of these is not a huge problem. They add up in total to more than 100% of a possible score. So, one missing can still allow a perfect grade.

- Has License file or section in the README. It is an immediate fail if no license is found.

- Stars count being above 100.
- Has Readme file.
- Most recent commit. Scaled to within a year. 1 year ago being a 0 and now being a 20.
- Amount of contributors being greater than 5.
- Amount of commits.
- Has a sponsors section.
- Has a releases section
- Has docs folder.
- Frequency of commits for root level files and folders. Checks amount of time between most recent and oldest. Also checks for varied dates between and ratio of unique commits.
- Open issues relative to star count or commit count, whichever is greater.

You can even configure which ones you want to have as part of your check list by clicking the cog icon. (changing exact weight values coming soon.)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Stethoscope Stethoscope
ID gdkkpjagibimlpgmcbaajccgahfbojec
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/stethoscope/gdkkpjagibimlpgmcbaajccgahfbojec
คำอธิบาย Check the health of a github repo with one easy step.
ขนาดไฟล์ 1.19 MB
จำนวนการติดตั้ง 147
เวอร์ชันปัจจุบัน 0.3.3
อัปเดตครั้งล่าสุด 2022-09-26
วันที่เผยแพร่ 2021-11-07
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา cmgriffing
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/cmgriffing/stethoscope#readme
URL หน้าช่วยเหลือ https://github.com/cmgriffing/stethoscope/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stethoscope",
    "version": "0.3.3",
    "icons": {
        "48": "assets\/stethoscope_48.png",
        "128": "assets\/stethoscope_128.png"
    },
    "description": "Check the health of a github repo with one easy step.",
    "homepage_url": "https:\/\/github.com\/cmgriffing\/stethoscope",
    "short_name": "Stethoscope",
    "permissions": [
        "activeTab"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "author": "cmgriffing",
    "minimum_chrome_version": "49",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "48": "assets\/stethoscope_48.png",
            "128": "assets\/stethoscope_128.png"
        },
        "default_title": "Stethoscope",
        "chrome_style": false
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true,
        "chrome_style": false
    },
    "background": {
        "scripts": [
            "js\/background.bundle.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/github.com\/settings*",
                "*:\/\/github.com\/*\/settings*",
                "*:\/\/github.com\/*\/security*",
                "*:\/\/github.com\/notifications*",
                "*:\/\/github.com\/signup",
                "*:\/\/github.com\/login",
                "*:\/\/github.com\/logout"
            ],
            "js": [
                "js\/contentScript.bundle.js"
            ]
        }
    ]
}