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はhttps://hmemcpy.comによって開発されたChromeの拡張機能で、その主な機能は「Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.」です。

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

screenshot

Github Gist logo fixer拡張機能のCRXファイルをダウンロード

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
Eメール [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"
        }
    ]
}