Refined GitHub

Simplifies the GitHub interface and adds useful features

Refined GitHubคืออะไร?

Refined GitHub เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sindre Sorhus และคุณลักษณะหลักของมันคือ "Simplifies the GitHub interface and adds useful features"

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

screenshot
screenshot

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

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

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

                        Highlights:
- Linkifies issue/PR references and URLs in code.
- Makes whitespace characters visible.
- Reduces tabs’ size to 4 spaces instead of 8.
- Adds one-click merge conflict fixers.
- Adds reaction avatars showing who reacted to a comment.
- Adds a button to revert all the changes to a file in a PR.
- Adds a build/CI status icon next to the repo’s name.
- Adds a button to view the source of Markdown files.
- Shows PRs that touch the current file.
- Highlights the most useful comment in conversations.
- Shows the first Git tag a merged PR was included in.
- Adds a link to an automatic changelog for each tag/release.
- Adds possible related pages and alternatives on 404 pages.
- Displays the age of the repository in the sidebar.

And so much more! 200+ features. See the website for a full list of features.


The GITHUB and REFINED GITHUB trademarks are owned by GitHub, Inc. and used under license.                    

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

ชื่อ Refined GitHub Refined GitHub
ID hlepfoohegkhhmjieoechaddaejaokhf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/refined-github/hlepfoohegkhhmjieoechaddaejaokhf
คำอธิบาย Simplifies the GitHub interface and adds useful features
ขนาดไฟล์ 248 KB
จำนวนการติดตั้ง 80,000
เวอร์ชันปัจจุบัน 24.2.8
อัปเดตครั้งล่าสุด 2024-02-08
วันที่เผยแพร่ 2020-07-02
คะแนน 4.79/5 รวมทั้งหมด 177 คะแนน
ผู้พัฒนา Sindre Sorhus
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/sindresorhus/refined-github
URL หน้าช่วยเหลือ https://github.com/sindresorhus/refined-github/issues
URL หน้านโยบายความเป็นส่วนตัว https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Refined GitHub",
    "version": "24.2.8",
    "description": "Simplifies the GitHub interface and adds useful features",
    "homepage_url": "https:\/\/github.com\/refined-github\/refined-github",
    "manifest_version": 2,
    "minimum_chrome_version": "105",
    "applications": {
        "gecko": {
            "id": "{a4c4eda4-fb84-4a84-b4a1-f7c1cbf2a1ad}",
            "strict_min_version": "102.0"
        }
    },
    "permissions": [
        "storage",
        "contextMenus",
        "activeTab",
        "alarms",
        "https:\/\/github.com\/*",
        "https:\/\/api.github.com\/*"
    ],
    "browser_action": {
        "default_icon": "assets\/icon.png"
    },
    "optional_permissions": [
        "*:\/\/*\/*"
    ],
    "icons": {
        "128": "assets\/icon.png"
    },
    "options_ui": {
        "chrome_style": true,
        "page": "assets\/options.html"
    },
    "background": {
        "scripts": [
            "assets\/background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "exclude_matches": [
                "https:\/\/*\/login\/*"
            ],
            "css": [
                "assets\/refined-github.css"
            ],
            "js": [
                "assets\/refined-github.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "assets\/resolve-conflicts.js"
    ]
}