├── .gitignore ├── HOW-TO.md ├── LICENSE ├── README.md ├── Sketch Measure.sketchplugin └── Contents │ ├── Resources │ ├── icons │ │ ├── checkbox-checked.png │ │ ├── checkbox-checked@2x.png │ │ ├── checkbox-unchecked.png │ │ ├── checkbox-unchecked@2x.png │ │ ├── clear-normal.png │ │ ├── clear-normal@2x.png │ │ ├── close-normal.png │ │ ├── close-normal@2x.png │ │ ├── coordinate-disabled.png │ │ ├── coordinate-disabled@2x.png │ │ ├── coordinate-normal.png │ │ ├── coordinate-normal@2x.png │ │ ├── create-slice-disabled.png │ │ ├── create-slice-disabled@2x.png │ │ ├── create-slice-normal.png │ │ ├── create-slice-normal@2x.png │ │ ├── divider-h.png │ │ ├── divider-h@2x.png │ │ ├── divider-v.png │ │ ├── divider-v@2x.png │ │ ├── done-normal.png │ │ ├── done-normal@2x.png │ │ ├── height-center-disabled.png │ │ ├── height-center-disabled@2x.png │ │ ├── height-center-normal.png │ │ ├── height-center-normal@2x.png │ │ ├── height-left-disabled.png │ │ ├── height-left-disabled@2x.png │ │ ├── height-left-normal.png │ │ ├── height-left-normal@2x.png │ │ ├── height-right-disabled.png │ │ ├── height-right-disabled@2x.png │ │ ├── height-right-normal.png │ │ ├── height-right-normal@2x.png │ │ ├── hidden-normal.png │ │ ├── hidden-normal@2x.png │ │ ├── horizontal-distance-disabled.png │ │ ├── horizontal-distance-disabled@2x.png │ │ ├── horizontal-distance-normal.png │ │ ├── horizontal-distance-normal@2x.png │ │ ├── locked-normal.png │ │ ├── locked-normal@2x.png │ │ ├── overlay-disabled.png │ │ ├── overlay-disabled@2x.png │ │ ├── overlay-normal.png │ │ ├── overlay-normal@2x.png │ │ ├── properties-bottom-disabled.png │ │ ├── properties-bottom-disabled@2x.png │ │ ├── properties-bottom-normal.png │ │ ├── properties-bottom-normal@2x.png │ │ ├── properties-left-disabled.png │ │ ├── properties-left-disabled@2x.png │ │ ├── properties-left-normal.png │ │ ├── properties-left-normal@2x.png │ │ ├── properties-right-disabled.png │ │ ├── properties-right-disabled@2x.png │ │ ├── properties-right-normal.png │ │ ├── properties-right-normal@2x.png │ │ ├── properties-top-disabled.png │ │ ├── properties-top-disabled@2x.png │ │ ├── properties-top-normal.png │ │ ├── properties-top-normal@2x.png │ │ ├── settings-normal.png │ │ ├── settings-normal@2x.png │ │ ├── spacing-bottom-disabled.png │ │ ├── spacing-bottom-disabled@2x.png │ │ ├── spacing-bottom-normal.png │ │ ├── spacing-bottom-normal@2x.png │ │ ├── spacing-left-disabled.png │ │ ├── spacing-left-disabled@2x.png │ │ ├── spacing-left-normal.png │ │ ├── spacing-left-normal@2x.png │ │ ├── spacing-right-disabled.png │ │ ├── spacing-right-disabled@2x.png │ │ ├── spacing-right-normal.png │ │ ├── spacing-right-normal@2x.png │ │ ├── spacing-top-disabled.png │ │ ├── spacing-top-disabled@2x.png │ │ ├── spacing-top-normal.png │ │ ├── spacing-top-normal@2x.png │ │ ├── titlebar-bg.png │ │ ├── titlebar-bg@2x.png │ │ ├── vertical-distance-disabled.png │ │ ├── vertical-distance-disabled@2x.png │ │ ├── vertical-distance-normal.png │ │ ├── vertical-distance-normal@2x.png │ │ ├── width-bottom-disabled.png │ │ ├── width-bottom-disabled@2x.png │ │ ├── width-bottom-normal.png │ │ ├── width-bottom-normal@2x.png │ │ ├── width-middle-disabled.png │ │ ├── width-middle-disabled@2x.png │ │ ├── width-middle-normal.png │ │ ├── width-middle-normal@2x.png │ │ ├── width-top-disabled.png │ │ ├── width-top-disabled@2x.png │ │ ├── width-top-normal.png │ │ └── width-top-normal@2x.png │ └── panel │ │ ├── assets │ │ ├── css │ │ │ ├── app.css │ │ │ └── normalize.css │ │ ├── img │ │ │ └── logo.png │ │ └── js │ │ │ ├── common.js │ │ │ └── vue.min.js │ │ └── settings.html │ └── Sketch │ ├── SMFramework.framework │ ├── Headers │ │ └── SMFramework.h │ ├── Modules │ │ └── module.modulemap │ ├── Resources │ │ ├── Info.plist │ │ └── SMFramework.js │ ├── SMFramework │ └── Versions │ │ └── A │ │ ├── Headers │ │ └── SMFramework.h │ │ ├── Modules │ │ └── module.modulemap │ │ ├── Resources │ │ ├── Info.plist │ │ └── SMFramework.js │ │ └── SMFramework │ ├── library │ ├── MochaJSDelegate.js │ ├── common.js │ ├── i18n │ │ ├── manifest-en.json │ │ ├── manifest-zh-Hans.json │ │ ├── manifest-zh-Hant.json │ │ ├── zh-Hans.json │ │ └── zh-Hant.json │ ├── panel │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── app.css │ │ │ │ └── normalize.css │ │ │ ├── img │ │ │ │ └── logo.png │ │ │ └── js │ │ │ │ ├── common.js │ │ │ │ └── jquery-2.2.4.min.js │ │ ├── colors.html │ │ ├── export.html │ │ ├── processing.html │ │ ├── properties.html │ │ ├── settings.html │ │ ├── sizes.html │ │ ├── spacings.html │ │ └── update.html │ ├── template.html │ ├── toolbar.js │ └── toolbar │ │ ├── divider.png │ │ ├── divider@2x.png │ │ ├── icon-close.png │ │ ├── icon-close@2x.png │ │ ├── icon-colors.png │ │ ├── icon-colors@2x.png │ │ ├── icon-export.png │ │ ├── icon-export@2x.png │ │ ├── icon-hidden.png │ │ ├── icon-hidden@2x.png │ │ ├── icon-locked.png │ │ ├── icon-locked@2x.png │ │ ├── icon-notes.png │ │ ├── icon-notes@2x.png │ │ ├── icon-overlay.png │ │ ├── icon-overlay@2x.png │ │ ├── icon-properties.png │ │ ├── icon-properties@2x.png │ │ ├── icon-settings.png │ │ ├── icon-settings@2x.png │ │ ├── icon-sizes.png │ │ ├── icon-sizes@2x.png │ │ ├── icon-slice.png │ │ ├── icon-slice@2x.png │ │ ├── icon-spacings.png │ │ └── icon-spacings@2x.png │ ├── links.sketchscript │ ├── manifest.json │ └── mark.sketchscript ├── appcast.xml └── sketch-measure-runner.png /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /HOW-TO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/HOW-TO.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/README.md -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/checkbox-checked.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/checkbox-checked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/checkbox-checked@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/checkbox-unchecked.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/checkbox-unchecked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/checkbox-unchecked@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/clear-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/clear-normal.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/clear-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/clear-normal@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/close-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/close-normal.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/close-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/close-normal@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/coordinate-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/coordinate-disabled.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/coordinate-disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/coordinate-disabled@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/coordinate-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/coordinate-normal.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/coordinate-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/coordinate-normal@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/create-slice-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/create-slice-disabled.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/create-slice-disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/create-slice-disabled@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/create-slice-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/create-slice-normal.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/create-slice-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/create-slice-normal@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/divider-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/divider-h.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/divider-h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/divider-h@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/divider-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/divider-v.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/divider-v@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/divider-v@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/done-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/done-normal.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/done-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/done-normal@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/height-center-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/height-center-disabled.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/height-center-disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/height-center-disabled@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/height-center-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/height-center-normal.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/height-center-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/height-center-normal@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/height-left-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/height-left-disabled.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/height-left-disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/height-left-disabled@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/height-left-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/height-left-normal.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/height-left-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/height-left-normal@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/height-right-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/height-right-disabled.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/height-right-disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/height-right-disabled@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/height-right-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/height-right-normal.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/height-right-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/height-right-normal@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/hidden-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/hidden-normal.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/hidden-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/hidden-normal@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/horizontal-distance-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/horizontal-distance-disabled.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/horizontal-distance-disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/horizontal-distance-disabled@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/horizontal-distance-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/horizontal-distance-normal.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/horizontal-distance-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/horizontal-distance-normal@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/locked-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/locked-normal.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/locked-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/locked-normal@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/overlay-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/overlay-disabled.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/overlay-disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/overlay-disabled@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/overlay-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/overlay-normal.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/overlay-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/overlay-normal@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/properties-bottom-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/properties-bottom-disabled.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/properties-bottom-disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/properties-bottom-disabled@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/properties-bottom-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/properties-bottom-normal.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/properties-bottom-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/properties-bottom-normal@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/properties-left-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/properties-left-disabled.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/properties-left-disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/properties-left-disabled@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/properties-left-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/properties-left-normal.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/properties-left-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/properties-left-normal@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/properties-right-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/properties-right-disabled.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/properties-right-disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/properties-right-disabled@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/properties-right-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/properties-right-normal.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/properties-right-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/properties-right-normal@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/properties-top-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/properties-top-disabled.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/properties-top-disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/properties-top-disabled@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/properties-top-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/properties-top-normal.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/properties-top-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/properties-top-normal@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/settings-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/settings-normal.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/settings-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/settings-normal@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-bottom-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-bottom-disabled.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-bottom-disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-bottom-disabled@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-bottom-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-bottom-normal.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-bottom-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-bottom-normal@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-left-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-left-disabled.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-left-disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-left-disabled@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-left-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-left-normal.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-left-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-left-normal@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-right-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-right-disabled.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-right-disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-right-disabled@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-right-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-right-normal.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-right-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-right-normal@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-top-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-top-disabled.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-top-disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-top-disabled@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-top-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-top-normal.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-top-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/spacing-top-normal@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/titlebar-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/titlebar-bg.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/titlebar-bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/titlebar-bg@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/vertical-distance-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/vertical-distance-disabled.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/vertical-distance-disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/vertical-distance-disabled@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/vertical-distance-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/vertical-distance-normal.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/vertical-distance-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/vertical-distance-normal@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/width-bottom-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/width-bottom-disabled.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/width-bottom-disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/width-bottom-disabled@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/width-bottom-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/width-bottom-normal.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/width-bottom-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/width-bottom-normal@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/width-middle-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/width-middle-disabled.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/width-middle-disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/width-middle-disabled@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/width-middle-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/width-middle-normal.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/width-middle-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/width-middle-normal@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/width-top-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/width-top-disabled.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/width-top-disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/width-top-disabled@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/width-top-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/width-top-normal.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/icons/width-top-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/icons/width-top-normal@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/panel/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/panel/assets/css/app.css -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/panel/assets/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/panel/assets/css/normalize.css -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/panel/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/panel/assets/img/logo.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/panel/assets/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/panel/assets/js/common.js -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/panel/assets/js/vue.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/panel/assets/js/vue.min.js -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Resources/panel/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Resources/panel/settings.html -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/SMFramework.framework/Headers/SMFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/SMFramework.framework/Headers/SMFramework.h -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/SMFramework.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/SMFramework.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/SMFramework.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/SMFramework.framework/Resources/Info.plist -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/SMFramework.framework/Resources/SMFramework.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/SMFramework.framework/Resources/SMFramework.js -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/SMFramework.framework/SMFramework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/SMFramework.framework/SMFramework -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/SMFramework.framework/Versions/A/Headers/SMFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/SMFramework.framework/Versions/A/Headers/SMFramework.h -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/SMFramework.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/SMFramework.framework/Versions/A/Modules/module.modulemap -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/SMFramework.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/SMFramework.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/SMFramework.framework/Versions/A/Resources/SMFramework.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/SMFramework.framework/Versions/A/Resources/SMFramework.js -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/SMFramework.framework/Versions/A/SMFramework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/SMFramework.framework/Versions/A/SMFramework -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/MochaJSDelegate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/MochaJSDelegate.js -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/common.js -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/i18n/manifest-en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/i18n/manifest-en.json -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/i18n/manifest-zh-Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/i18n/manifest-zh-Hans.json -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/i18n/manifest-zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/i18n/manifest-zh-Hant.json -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/i18n/zh-Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/i18n/zh-Hans.json -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/i18n/zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/i18n/zh-Hant.json -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/panel/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/panel/assets/css/app.css -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/panel/assets/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/panel/assets/css/normalize.css -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/panel/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/panel/assets/img/logo.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/panel/assets/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/panel/assets/js/common.js -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/panel/assets/js/jquery-2.2.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/panel/assets/js/jquery-2.2.4.min.js -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/panel/colors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/panel/colors.html -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/panel/export.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/panel/export.html -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/panel/processing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/panel/processing.html -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/panel/properties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/panel/properties.html -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/panel/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/panel/settings.html -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/panel/sizes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/panel/sizes.html -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/panel/spacings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/panel/spacings.html -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/panel/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/panel/update.html -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/template.html -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar.js -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/divider.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/divider@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/divider@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-close.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-close@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-colors.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-colors@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-colors@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-export.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-export@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-export@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-hidden.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-hidden@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-hidden@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-locked.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-locked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-locked@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-notes.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-notes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-notes@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-overlay.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-overlay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-overlay@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-properties.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-properties@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-properties@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-settings.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-settings@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-sizes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-sizes.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-sizes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-sizes@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-slice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-slice.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-slice@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-slice@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-spacings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-spacings.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-spacings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/library/toolbar/icon-spacings@2x.png -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/links.sketchscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/links.sketchscript -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /Sketch Measure.sketchplugin/Contents/Sketch/mark.sketchscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/Sketch Measure.sketchplugin/Contents/Sketch/mark.sketchscript -------------------------------------------------------------------------------- /appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/appcast.xml -------------------------------------------------------------------------------- /sketch-measure-runner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellunium/sketch-measure-latest/HEAD/sketch-measure-runner.png --------------------------------------------------------------------------------