├── .appcast.xml ├── .gitignore ├── README.md ├── assets └── icon.png ├── package.json └── src ├── manifest.json ├── remove-bg.js └── set-api-key.js /.appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-remove-bg/HEAD/.appcast.xml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-remove-bg/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-remove-bg/HEAD/README.md -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-remove-bg/HEAD/assets/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-remove-bg/HEAD/package.json -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-remove-bg/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/remove-bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-remove-bg/HEAD/src/remove-bg.js -------------------------------------------------------------------------------- /src/set-api-key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-remove-bg/HEAD/src/set-api-key.js --------------------------------------------------------------------------------