├── .appcast.xml ├── .babelrc.json ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── LICENCE ├── README.md ├── assets ├── analytics.json └── icon.png ├── package.json └── src ├── delete-comps.js ├── manifest.json ├── save-comp.js ├── set-comp.js └── utils.js /.appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozgurgunes/Sketch-Layer-Comps/HEAD/.appcast.xml -------------------------------------------------------------------------------- /.babelrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozgurgunes/Sketch-Layer-Comps/HEAD/.babelrc.json -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozgurgunes/Sketch-Layer-Comps/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozgurgunes/Sketch-Layer-Comps/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozgurgunes/Sketch-Layer-Comps/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozgurgunes/Sketch-Layer-Comps/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozgurgunes/Sketch-Layer-Comps/HEAD/README.md -------------------------------------------------------------------------------- /assets/analytics.json: -------------------------------------------------------------------------------- 1 | { 2 | "trackingID": "UA-5738625-2" 3 | } -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozgurgunes/Sketch-Layer-Comps/HEAD/assets/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozgurgunes/Sketch-Layer-Comps/HEAD/package.json -------------------------------------------------------------------------------- /src/delete-comps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozgurgunes/Sketch-Layer-Comps/HEAD/src/delete-comps.js -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozgurgunes/Sketch-Layer-Comps/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/save-comp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozgurgunes/Sketch-Layer-Comps/HEAD/src/save-comp.js -------------------------------------------------------------------------------- /src/set-comp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozgurgunes/Sketch-Layer-Comps/HEAD/src/set-comp.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozgurgunes/Sketch-Layer-Comps/HEAD/src/utils.js --------------------------------------------------------------------------------