Gist Previewer
Preview gist html/js/css code.
Wat is Gist Previewer?
Gist Previewer is een Chrome-extensie ontwikkeld door David Orr, en de belangrijkste functie is "Preview gist html/js/css code.".
Extensie Screenshots
Download het CRX-bestand van de extensie Gist Previewer
Download Gist Previewer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Gist Previewer |
ID | akkophfgoandjomabfeppbnbgmejaofc |
Officiële URL | https://chromewebstore.google.com/detail/gist-previewer/akkophfgoandjomabfeppbnbgmejaofc |
Beschrijving | Preview gist html/js/css code. |
Bestandsgrootte | 11.01 KB |
Aantal Installaties | 92 |
Huidige Versie | 2.0.0 |
Laatst Bijgewerkt | 2017-04-03 |
Publicatiedatum | 2017-04-02 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | David Orr |
Betalingswijze | free |
Help Pagina-URL | https://github.com/davidyorr/gist-previewer |
Ondersteunde Talen | 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 } |