sketch-preview
A browser extension to view sketch files in github
Vad är sketch-preview?
sketch-preview är en Chrome-tillägg utvecklad av jvanbruegge, och dess huvudfunktion är "A browser extension to view sketch files in github".
Tilläggsskärmbilder
Ladda ner sketch-preview-förlängningens CRX-fil
Ladda ner sketch-preview-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
A browser extension to view sketch files in github. For open pull requests it also displays a visual diff of the files. Grundläggande Information om Tillägg
| Namn | |
| ID | dnggldceandgpmohpplipbhnhdhaiehp |
| Officiell webbadress | https://chromewebstore.google.com/detail/sketch-preview/dnggldceandgpmohpplipbhnhdhaiehp |
| Beskrivning | A browser extension to view sketch files in github |
| Filstorlek | 878 KB |
| Antal Installationer | 72 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2019-06-12 |
| Publiceringsdatum | 2019-06-12 |
| Utvecklare | jvanbruegge |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/jvanbruegge/sketch-preview |
| Hjälpsida URL | https://github.com/jvanbruegge/sketch-preview/issues |
| Stödda Språk | 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\/"
]
} | |