├── .github └── FUNDING.yml ├── .gitignore ├── README.md └── Rename Instances.sketchplugin └── Contents └── Sketch ├── manifest.json └── script.cocoascript /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [exevil] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | Ignore/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exevil/sketch-rename-instances/HEAD/README.md -------------------------------------------------------------------------------- /Rename Instances.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exevil/sketch-rename-instances/HEAD/Rename Instances.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /Rename Instances.sketchplugin/Contents/Sketch/script.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exevil/sketch-rename-instances/HEAD/Rename Instances.sketchplugin/Contents/Sketch/script.cocoascript --------------------------------------------------------------------------------