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
电子邮箱 [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"
        }
    ]
}