GistRun

Bring your Gists to life with GistRun!

Vad är GistRun?

GistRun är en Chrome-tillägg utvecklad av https://gist.run, och dess huvudfunktion är "Bring your Gists to life with GistRun!".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner GistRun-förlängningens CRX-fil

Ladda ner GistRun-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn GistRun GistRun
ID cmikephimncflideoipflcfacmadghno
Officiell webbadress https://chromewebstore.google.com/detail/gistrun/cmikephimncflideoipflcfacmadghno
Beskrivning Bring your Gists to life with GistRun!
Filstorlek 12.06 KB
Antal Installationer 35
Aktuell Version 1.1
Senast Uppdaterad 2016-02-18
Publiceringsdatum 2016-02-18
Betyg 4.00/5 Totalt 3 Betyg
Utvecklare https://gist.run
Betalningssätt free
Tilläggswebbplats https://gist.run
Stödda Språk 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"
    ]
}