sketch-preview
A browser extension to view sketch files in github
Cos'è sketch-preview?
sketch-preview è un'estensione di Chrome sviluppata da jvanbruegge, e la sua funzione principale è "A browser extension to view sketch files in github".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione sketch-preview
Scarica i file di estensione sketch-preview in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
A browser extension to view sketch files in github. For open pull requests it also displays a visual diff of the files.
Informazioni di Base sull'Estensione
Nome | sketch-preview |
ID | dnggldceandgpmohpplipbhnhdhaiehp |
URL Ufficiale | https://chromewebstore.google.com/detail/sketch-preview/dnggldceandgpmohpplipbhnhdhaiehp |
Descrizione | A browser extension to view sketch files in github |
Dimensione del File | 878 KB |
Conteggio Installazioni | 72 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2019-06-12 |
Data di Pubblicazione | 2019-06-12 |
Sviluppatore | jvanbruegge |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/jvanbruegge/sketch-preview |
URL della Pagina di Aiuto | https://github.com/jvanbruegge/sketch-preview/issues |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "sketch-preview", "version": "1.0", "description": "A browser extension to view sketch files in github", "background": { "scripts": [ "build\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/github.com\/*" ], "js": [ "build\/content.js" ] } ], "permissions": [ "*:\/\/*.github.com\/" ] } |