github-readme-toc

See in the left side the table of content of the readme file in the github project page

github-readme-tocคืออะไร?

github-readme-toc เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ivan Fraixedes และคุณลักษณะหลักของมันคือ "See in the left side the table of content of the readme file in the github project page"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย github-readme-toc

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

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

                        This extension shows a table of content generated from the README file of any GitGuh project’s root page.

It is very handy to jump through the sections without scrolling manually up and down or use the browser search action at the same time that you have to remember how it is called.

It is open source released under MIT and Creative Common, check link to GitHub project

Change log: https://github.com/ifraixedes/browser-extension-github-readme-toc/blob/master/CHANGELOG.md                    

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

ชื่อ github-readme-toc github-readme-toc
ID lbmealnkdpmndleijdkljlofnmgmpcdf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/github-readme-toc/lbmealnkdpmndleijdkljlofnmgmpcdf
คำอธิบาย See in the left side the table of content of the readme file in the github project page
ขนาดไฟล์ 2.22 MB
จำนวนการติดตั้ง 171
เวอร์ชันปัจจุบัน 0.0.5
อัปเดตครั้งล่าสุด 2015-09-20
วันที่เผยแพร่ 2015-09-20
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Ivan Fraixedes
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ifraixedes/browser-extension-github-readme-toc
URL หน้าช่วยเหลือ https://github.com/ifraixedes/browser-extension-github-readme-toc/issues
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "github-readme-toc",
    "version": "0.0.5",
    "author": "Ivan Fraixedes  (http:\/\/ivan.fraixed.es)",
    "description": "See in the left side the table of content of the readme file in the github project page",
    "icons": {
        "16": "img\/git-readme-toc-16.png",
        "48": "img\/git-readme-toc-48.png",
        "128": "img\/git-readme-toc-128.png"
    },
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/*"
            ],
            "exclude_globs": [
                "https:\/\/github.com\/*\/*\/*"
            ],
            "js": [
                "scripts\/toc-widget.js"
            ],
            "css": [
                "css\/toc-widget.css"
            ]
        }
    ]
}