Gist Previewer
Preview gist html/js/css code.
Co je Gist Previewer?
Gist Previewer je rozšíření Chrome vyvinuté David Orr, a jeho hlavní funkcí je „Preview gist html/js/css code.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Gist Previewer
Stáhněte si soubory rozšíření Gist Previewer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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. Základní Informace o Rozšíření
| Název | |
| ID | akkophfgoandjomabfeppbnbgmejaofc |
| Oficiální URL | https://chromewebstore.google.com/detail/gist-previewer/akkophfgoandjomabfeppbnbgmejaofc |
| Popis | Preview gist html/js/css code. |
| Velikost souboru | 11.01 KB |
| Počet instalací | 92 |
| Aktuální Verze | 2.0.0 |
| Poslední Aktualizace | 2017-04-03 |
| Datum Vydání | 2017-04-02 |
| Hodnocení | 5.00/5 Celkem 1 Hodnocení |
| Vývojář | David Orr |
| Typ Platby | free |
| URL Stránky Nápovědy | https://github.com/davidyorr/gist-previewer |
| Podporované Jazyky | 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
} | |