Gistify
This extension searches for gist URLs in a page and replaces them with embedded gists.
什么是Gistify?
Gistify是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“This extension searches for gist URLs in a page and replaces them with embedded gists.”。
扩展截图
下载Gistify扩展crx文件
下载Gistify扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        A chrome extension that searches for Gist URL's on the page and replaces them with embedded gists. Inspired by poorly formatted code in the comments on the blondiebytes YouTube channel (http://bit.ly/1NbxNzV).
Contributors: George Witteman, Kathryn Hodge                     扩展基本信息
| 名称 |   |  
| ID | bjapmncmmhnhbfkfaopdajhmhccfhonm | 
| 官方URL | https://chromewebstore.google.com/detail/gistify/bjapmncmmhnhbfkfaopdajhmhccfhonm | 
| 简介 | This extension searches for gist URLs in a page and replaces them with embedded gists. | 
| 文件大小 | 40.31 KB | 
| 安装次数 | 17 | 
| 当前版本 | 1.0 | 
| 更新时间 | 2016-02-26 | 
| 上架时间 | 2016-02-26 | 
| 评分 | 4.83/5 共6次评分 | 
| 开发者 | Unknown | 
| 付费类型 | free | 
| 扩展官网 | http://bit.ly/1NbxNzV | 
| 支持的语言 | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Gistify",
    "description": "This extension searches for gist URLs in a page and replaces them with embedded gists.",
    "version": "1.0",
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon48.png",
        "default_title": "Find Gists!"
    },
    "permissions": [
        "activeTab",
        "*:\/\/*.github.com\/"
    ]
}  |  |