Gistify

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

Qu'est-ce que Gistify ?

Gistify est une extension Chrome développée par Unknown, et sa fonction principale est "This extension searches for gist URLs in a page and replaces them with embedded gists.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Gistify

Téléchargez les fichiers d'extension Gistify au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Gistify Gistify
ID bjapmncmmhnhbfkfaopdajhmhccfhonm
URL Officiel https://chromewebstore.google.com/detail/gistify/bjapmncmmhnhbfkfaopdajhmhccfhonm
Description This extension searches for gist URLs in a page and replaces them with embedded gists.
Taille du Fichier 40.31 KB
Nombre d'Installations 17
Version Actuelle 1.0
Dernière Mise à Jour 2016-02-26
Date de Publication 2016-02-26
Évaluation 4.83/5 Total 6 Évaluations
Développeur Unknown
Type de Paiement free
Site Web de l'Extension http://bit.ly/1NbxNzV
Langues Prises en Charge 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\/"
    ]
}