Enhanced GitHub

Display repo size, size of each file, download link and option to copy file contents

Enhanced GitHubคืออะไร?

Enhanced GitHub เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Varun Malhotra และคุณลักษณะหลักของมันคือ "Display repo size, size of each file, download link and option to copy file contents"

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

screenshot
screenshot

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

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

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

                        Extension that provides useful features on top of GitHub Website.

FEATURES

1. Displays repo size.
2. Displays each file size in every active branch (not applicable for folder / symlink)
3. Show download link for each individual file (not applicable for folder / symlink)
4. Copy file's contents directly to Clipboard (just won't work for markdown files)
5. Download file
7. Coming soon...please suggest by opening an issue on https://github.com/softvar/enhanced-github/issues

NO BS POLICY:

Enhanced GitHub Chrome Extension doesn't collect/share/care about your data at all.
Asks for GitHub Access Token only for private repos and if Rate Limiting is your concern.

PERMISSION REQUIRED:

1. "*://*.github.com/*" - for running on github.com domain.
2. storage - for storing GitHub access token on your local system. GitHub Access token is required for private repos and for handling API rate-limiting issues.
3. webRequest - to support GitHub being a single-page-application now.
4. webNavigation - to support GitHub being a single-page-application now.

Read the detailed blog to support SPA and for requesting permissions #3 and #4 - https://medium.com/@softvar/making-chrome-extension-smart-by-supporting-spa-websites-1f76593637e8

CHANGELOG:

* Note: From v1.0.0 onwards - Click on download icon/button while pressing Alt / Cmd(for Mac)/ Ctrl(for Windows) because GitHub has stopped downloading of files directly.
* From v3.0.0 onwards, this extension wants webRequest permission so that it can properly handle SPA behavior of GitHub website.
* From v4.0.0 onwards, it support GitHub New Design.

Please check the detailed CHANGELOG - https://github.com/softvar/enhanced-github/blob/master/CHANGELOG.md

OPEN-SOURCED and LICENSE:

- It's open-sourced - https://github.com/softvar/enhanced-github under MIT License

CONTACT:

For more updates, please stay tuned!
For any queries/issues - open an issue on https://github.com/softvar/enhanced-github/issues
For any query, drop me an email at [email protected]                    

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

ชื่อ Enhanced GitHub Enhanced GitHub
ID anlikcnbgdeidpacdbdljnabclhahhmd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/enhanced-github/anlikcnbgdeidpacdbdljnabclhahhmd
คำอธิบาย Display repo size, size of each file, download link and option to copy file contents
ขนาดไฟล์ 25.93 KB
จำนวนการติดตั้ง 41,484
เวอร์ชันปัจจุบัน 5.0.12
อัปเดตครั้งล่าสุด 2021-12-25
วันที่เผยแพร่ 2020-06-30
คะแนน 4.48/5 รวมทั้งหมด 56 คะแนน
ผู้พัฒนา Varun Malhotra
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/softvar/enhanced-github
URL หน้าช่วยเหลือ https://varunmalhotra.xyz
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Enhanced GitHub",
    "short_name": "Enhanced GitHub",
    "version": "5.0.12",
    "manifest_version": 2,
    "description": "Display repo size, size of each file, download link and option to copy file contents",
    "homepage_url": "https:\/\/github.com\/softvar\/enhanced-github",
    "author": "Varun Malhotra",
    "icons": {
        "16": "icons\/enhanced-github16.png",
        "48": "icons\/enhanced-github48.png",
        "128": "icons\/enhanced-github128.png"
    },
    "browser_action": {
        "default_icon": "icons\/enhanced-github48.png",
        "default_popup": "popup.html",
        "default_title": "Enhanced GitHub"
    },
    "permissions": [
        "*:\/\/*.github.com\/*",
        "storage",
        "webRequest",
        "webNavigation"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*"
            ],
            "js": [
                "src\/inject.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}