Github Gist logo fixer

Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.

Github Gist logo fixerคืออะไร?

Github Gist logo fixer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://hmemcpy.com และคุณลักษณะหลักของมันคือ "Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github Gist logo fixer

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

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

                        A tiny bit of JavaScript to have clicking on the top left logo on Github's Gist page take back to github.

Solves a personal annoyance of mine, but I hope you'll find it useful as well.

Feel free to send me pull requests to improve it!                    

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

ชื่อ Github Gist logo fixer Github Gist logo fixer
ID bgkfamnjiedcggijadfmjopnmidnkdad
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/github-gist-logo-fixer/bgkfamnjiedcggijadfmjopnmidnkdad
คำอธิบาย Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.
ขนาดไฟล์ 4.12 KB
จำนวนการติดตั้ง 80
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2015-05-17
วันที่เผยแพร่ 2015-05-17
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://hmemcpy.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/hmemcpy/gisthub
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Gist logo fixer",
    "description": "Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.",
    "version": "1.1",
    "permissions": [
        "https:\/\/gist.github.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "github-inject.js"
            ],
            "run_at": "document_end"
        }
    ]
}