GistRun

Bring your Gists to life with GistRun!

Co to jest GistRun?

GistRun to rozszerzenie Chrome opracowane przez https://gist.run, a jego główną funkcją jest „Bring your Gists to life with GistRun!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia GistRun

Pobierz pliki rozszerzeń GistRun w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        The GistRun Chrome extension adds "Run" buttons to GitHub Gist pages, making it easy to open Gists in the GistRun editor.

The extension adds "Run" buttons to the Gists list page, the Gist page and to the Gist "Revisions" tab, making it easy to run a Gist at a specific revision/SHA.                    

Podstawowe informacje o rozszerzeniu

Nazwa GistRun GistRun
ID cmikephimncflideoipflcfacmadghno
Oficjalny URL https://chromewebstore.google.com/detail/gistrun/cmikephimncflideoipflcfacmadghno
Opis Bring your Gists to life with GistRun!
Rozmiar pliku 12.06 KB
Liczba instalacji 35
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2016-02-18
Data Publikacji 2016-02-18
Ocena 4.00/5 Łącznie 3 Oceny
Deweloper https://gist.run
Typ Płatności free
Strona Rozszerzenia https://gist.run
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GistRun",
    "description": "Bring your Gists to life with GistRun!",
    "author": "Jeremy Danyow",
    "icons": {
        "128": "icon128.png"
    },
    "version": "1.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "*.png"
    ]
}