├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── Sync Text Layer Name.sketchplugin └── Contents │ └── Sketch │ ├── manifest.json │ └── syncTextLayerName.js └── sketchpack.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creatide/Sketch_Sync-Text-Layer-Name/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creatide/Sketch_Sync-Text-Layer-Name/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creatide/Sketch_Sync-Text-Layer-Name/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creatide/Sketch_Sync-Text-Layer-Name/HEAD/README.md -------------------------------------------------------------------------------- /Sync Text Layer Name.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creatide/Sketch_Sync-Text-Layer-Name/HEAD/Sync Text Layer Name.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /Sync Text Layer Name.sketchplugin/Contents/Sketch/syncTextLayerName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creatide/Sketch_Sync-Text-Layer-Name/HEAD/Sync Text Layer Name.sketchplugin/Contents/Sketch/syncTextLayerName.js -------------------------------------------------------------------------------- /sketchpack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creatide/Sketch_Sync-Text-Layer-Name/HEAD/sketchpack.json --------------------------------------------------------------------------------