Gistify

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

Cos'è Gistify?

Gistify è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "This extension searches for gist URLs in a page and replaces them with embedded gists.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Gistify

Scarica i file di estensione Gistify in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Gistify Gistify
ID bjapmncmmhnhbfkfaopdajhmhccfhonm
URL Ufficiale https://chromewebstore.google.com/detail/gistify/bjapmncmmhnhbfkfaopdajhmhccfhonm
Descrizione This extension searches for gist URLs in a page and replaces them with embedded gists.
Dimensione del File 40.31 KB
Conteggio Installazioni 17
Versione Corrente 1.0
Ultimo Aggiornamento 2016-02-26
Data di Pubblicazione 2016-02-26
Valutazione 4.83/5 Totale 6 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Sito Web dell'Estensione http://bit.ly/1NbxNzV
Lingue Supportate 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\/"
    ]
}