Gistify

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

Wat is Gistify?

Gistify is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "This extension searches for gist URLs in a page and replaces them with embedded gists.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Gistify

Download Gistify-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Gistify Gistify
ID bjapmncmmhnhbfkfaopdajhmhccfhonm
Officiële URL https://chromewebstore.google.com/detail/gistify/bjapmncmmhnhbfkfaopdajhmhccfhonm
Beschrijving This extension searches for gist URLs in a page and replaces them with embedded gists.
Bestandsgrootte 40.31 KB
Aantal Installaties 17
Huidige Versie 1.0
Laatst Bijgewerkt 2016-02-26
Publicatiedatum 2016-02-26
Beoordeling 4.83/5 Totaal 6 Beoordelingen
Ontwikkelaar Unknown
Betalingswijze free
Extensiewebsite http://bit.ly/1NbxNzV
Ondersteunde Talen 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\/"
    ]
}