Git Fu for Github™

A feature set that attempts to aid you in everyday tasks you experience when using Github™ issues

Git Fu for Github™คืออะไร?

Git Fu for Github™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gornall.jason และคุณลักษณะหลักของมันคือ "A feature set that attempts to aid you in everyday tasks you experience when using Github™ issues"

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Git Fu for Github™

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

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

                        A feature set that attempts to aid you in everyday tasks you experience when using Github™. Includes an inbox system surfacing new comments, unread tickets, and read tickets.

Each feature can be turned on and off fairly easily with the icon on the top right. Here are just some samples of graphs that can be included. EVERY graph bar/pie chart slice is a filter to show the issues of that slice.

NO data is stored on ANY server because everything is stored locally in browser localStorage. 

*NOTE* text is scrambled as this is my own private repo data :)                    

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

ชื่อ Git Fu for Github™ Git Fu for Github™
ID pbbonfggfohbbjhfkmbangmedljojjfi
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/git-fu-for-github/pbbonfggfohbbjhfkmbangmedljojjfi
คำอธิบาย A feature set that attempts to aid you in everyday tasks you experience when using Github™ issues
ขนาดไฟล์ 108 KB
จำนวนการติดตั้ง 153
เวอร์ชันปัจจุบัน 3.2.1.11
อัปเดตครั้งล่าสุด 2015-05-31
วันที่เผยแพร่ 2015-05-31
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา gornall.jason
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Git Fu for Github\u2122",
    "version": "3.2.1.11",
    "manifest_version": 2,
    "description": "A feature set that attempts to aid you in everyday tasks you experience when using Github\u2122 issues",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArqQ1EHL9H\/ZM+tnG3QG4g3y60PDXnz4rzvDq9mGvFf4OAPOcPVttqH7kljWRocszkvBc4fZd0vRJ3QJ+yFN8CyJetkHugVnjQDGROWcH5wmIERcKp1cHZ1EHpDfF\/mG1PDJnBOhSyAu3RRhlFG0RfLH+o\/bT2pkwabpEt6rPkafh5jaxPoJqN31HtDOSAAOB8PjBBTo2JuY9jS11BuHFZ+raLFtL\/6RRVXjBOqeDA91szYZyeG3ktLy9RDDm7GHfsewtQAE6Z+QQgV+fmGBR719hGyljxUX6tgkSZHPeClKxw5oILp5DkWS4spFdULj18gKKDjHB42ZEst6mbDuR0QIDAQAB",
    "browser_action": {
        "default_icon": "github-128.png",
        "default_popup": "index.html"
    },
    "icons": {
        "128": "github-128.png",
        "48": "github-128.png",
        "16": "github-128.png"
    },
    "permissions": [
        "webRequest",
        "identity",
        "https:\/\/github.com\/",
        "tabs"
    ],
    "background": {
        "scripts": [
            "index.js",
            "ajaxer.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "css": [
                "animate.css",
                "main.css"
            ],
            "js": [
                "jquery.min.js",
                "teacup.js",
                "async.min.js",
                "chart.min.js",
                "colors.js",
                "main.js"
            ],
            "run_at": "document_end"
        }
    ]
}