Gist Previewer

Preview gist html/js/css code.

Co to jest Gist Previewer?

Gist Previewer to rozszerzenie Chrome opracowane przez David Orr, a jego główną funkcją jest „Preview gist html/js/css code.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Gist Previewer

Pobierz pliki rozszerzeń Gist Previewer 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

                        Renders Gist repos that contain HTML, JavaScript, or CSS files.

Places a "Preview HTML" button in the top bar of each HTML file. Clicking the button renders that HTML file with all JavaScript and CSS files included.                    

Podstawowe informacje o rozszerzeniu

Nazwa Gist Previewer Gist Previewer
ID akkophfgoandjomabfeppbnbgmejaofc
Oficjalny URL https://chromewebstore.google.com/detail/gist-previewer/akkophfgoandjomabfeppbnbgmejaofc
Opis Preview gist html/js/css code.
Rozmiar pliku 11.01 KB
Liczba instalacji 92
Aktualna Wersja 2.0.0
Ostatnia Aktualizacja 2017-04-03
Data Publikacji 2017-04-02
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper David Orr
Typ Płatności free
Adres URL Strony Pomocy https://github.com/davidyorr/gist-previewer
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gist Previewer",
    "description": "Preview gist html\/js\/css code.",
    "version": "2.0.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "js\/gistpreviewer.js"
            ],
            "css": [
                "css\/gistpreviewer.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "icons": {
        "16": "img\/icon.png",
        "48": "img\/icon.png",
        "128": "img\/icon.png"
    },
    "manifest_version": 2
}