sketch-preview
A browser extension to view sketch files in github
What is sketch-preview?
sketch-preview is a Chrome extension developed by jvanbruegge, and its main feature is "A browser extension to view sketch files in github".
Extension Screenshots
Download sketch-preview Extension CRX File
Download sketch-preview extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
A browser extension to view sketch files in github. For open pull requests it also displays a visual diff of the files. Extension Basic Information
| Name | |
| ID | dnggldceandgpmohpplipbhnhdhaiehp |
| Official URL | https://chromewebstore.google.com/detail/sketch-preview/dnggldceandgpmohpplipbhnhdhaiehp |
| Description | A browser extension to view sketch files in github |
| File Size | 878 KB |
| Installation Count | 72 |
| Current Version | 1.0 |
| Last Updated | 2019-06-12 |
| Publish Date | 2019-06-12 |
| Developer | jvanbruegge |
| Payment Type | free |
| Extension Website | https://github.com/jvanbruegge/sketch-preview |
| Help Page URL | https://github.com/jvanbruegge/sketch-preview/issues |
| Supported Languages | 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\/"
]
} | |