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はIvan Fraixedesによって開発されたChromeの拡張機能で、その主な機能は「See in the left side the table of content of the readme file in the github project page」です。

拡張機能のスクリーンショット

screenshot

github-readme-toc拡張機能のCRXファイルをダウンロード

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"
            ]
        }
    ]
}