├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── contribution.md ├── issue-template.md ├── marketch.sketchplugin └── Contents │ └── Sketch │ ├── checkupdate.cocoascript │ ├── export.cocoascript │ ├── index.html │ ├── manifest.json │ ├── util.cocoascript │ └── zip.cocoascript ├── package.json └── resource ├── logo.png └── preview.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudou527/marketch/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.DS_Store 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudou527/marketch/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudou527/marketch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudou527/marketch/HEAD/README.md -------------------------------------------------------------------------------- /contribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudou527/marketch/HEAD/contribution.md -------------------------------------------------------------------------------- /issue-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudou527/marketch/HEAD/issue-template.md -------------------------------------------------------------------------------- /marketch.sketchplugin/Contents/Sketch/checkupdate.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudou527/marketch/HEAD/marketch.sketchplugin/Contents/Sketch/checkupdate.cocoascript -------------------------------------------------------------------------------- /marketch.sketchplugin/Contents/Sketch/export.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudou527/marketch/HEAD/marketch.sketchplugin/Contents/Sketch/export.cocoascript -------------------------------------------------------------------------------- /marketch.sketchplugin/Contents/Sketch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudou527/marketch/HEAD/marketch.sketchplugin/Contents/Sketch/index.html -------------------------------------------------------------------------------- /marketch.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudou527/marketch/HEAD/marketch.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /marketch.sketchplugin/Contents/Sketch/util.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudou527/marketch/HEAD/marketch.sketchplugin/Contents/Sketch/util.cocoascript -------------------------------------------------------------------------------- /marketch.sketchplugin/Contents/Sketch/zip.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudou527/marketch/HEAD/marketch.sketchplugin/Contents/Sketch/zip.cocoascript -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0.24" 3 | } 4 | -------------------------------------------------------------------------------- /resource/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudou527/marketch/HEAD/resource/logo.png -------------------------------------------------------------------------------- /resource/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudou527/marketch/HEAD/resource/preview.png --------------------------------------------------------------------------------