Gistify

This extension searches for gist URLs in a page and replaces them with embedded gists.

Apa itu Gistify?

Gistify adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "This extension searches for gist URLs in a page and replaces them with embedded gists.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Gistify

Unduh file ekstensi Gistify dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Gistify Gistify
ID bjapmncmmhnhbfkfaopdajhmhccfhonm
URL Resmi https://chromewebstore.google.com/detail/gistify/bjapmncmmhnhbfkfaopdajhmhccfhonm
Deskripsi This extension searches for gist URLs in a page and replaces them with embedded gists.
Ukuran File 40.31 KB
Jumlah Instalasi 17
Versi Saat Ini 1.0
Terakhir Diperbarui 2016-02-26
Tanggal Publikasi 2016-02-26
Penilaian 4.83/5 Total 6 Penilaian
Pengembang Unknown
Tipe Pembayaran free
Situs Ekstensi http://bit.ly/1NbxNzV
Bahasa yang Didukung 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\/"
    ]
}