github npm stats

Displays npm package stats on GitHub

github npm statsคืออะไร?

github npm stats เป็นส่วนขยายของ Chrome ที่พัฒนาโดย katranci และคุณลักษณะหลักของมันคือ "Displays npm package stats on GitHub"

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

screenshot
screenshot

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

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

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

                        About Permissions
==============
- Data access for github.com is required to access package.json file of the underlying project
- Data access for npmjs.org is required to access npm package details
- Storage is required to cache github and npm api responses

Source Code
==========
You can view the source code of this extension on https://github.com/katranci/github-npm-stats                    

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

ชื่อ github npm stats github npm stats
ID oomfflokggoffaiagenekchfnpighcef
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/github-npm-stats/oomfflokggoffaiagenekchfnpighcef
คำอธิบาย Displays npm package stats on GitHub
ขนาดไฟล์ 65.86 KB
จำนวนการติดตั้ง 621
เวอร์ชันปัจจุบัน 1.3.4
อัปเดตครั้งล่าสุด 2020-05-31
วันที่เผยแพร่ 2020-05-31
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา katranci
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/katranci/github-npm-stats
URL หน้าช่วยเหลือ https://github.com/katranci/github-npm-stats/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "github npm stats",
    "version": "1.3.4",
    "manifest_version": 2,
    "description": "Displays npm package stats on GitHub",
    "author": "Ahmet Katranc\u0131 ",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage",
        "https:\/\/*.npmjs.org\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "chart.min.js",
                "bundle.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ]
}