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.」です。

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

screenshot

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                    

拡張機能の基本情報

名前 Gistify Gistify
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\/"
    ]
}