├── .github └── workflows │ └── upload-tapestry-plugins-to-release.yml ├── README.md ├── dev.simonbs.apple.apps.today ├── README.md ├── icon.png ├── plugin-config.json ├── plugin.js └── ui-config.json ├── dev.simonbs.apple.newsroom ├── README.md ├── icon.png ├── plugin-config.json ├── plugin.js └── ui-config.json ├── dev.simonbs.slack ├── README.md ├── icon.png ├── plugin-config.json ├── plugin.js └── ui-config.json └── dev.simonbs.youtube ├── README.md ├── icon.png ├── plugin-config.json ├── plugin.js └── ui-config.json /.github/workflows/upload-tapestry-plugins-to-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/tapestry-plugins/HEAD/.github/workflows/upload-tapestry-plugins-to-release.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/tapestry-plugins/HEAD/README.md -------------------------------------------------------------------------------- /dev.simonbs.apple.apps.today/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/tapestry-plugins/HEAD/dev.simonbs.apple.apps.today/README.md -------------------------------------------------------------------------------- /dev.simonbs.apple.apps.today/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/tapestry-plugins/HEAD/dev.simonbs.apple.apps.today/icon.png -------------------------------------------------------------------------------- /dev.simonbs.apple.apps.today/plugin-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/tapestry-plugins/HEAD/dev.simonbs.apple.apps.today/plugin-config.json -------------------------------------------------------------------------------- /dev.simonbs.apple.apps.today/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/tapestry-plugins/HEAD/dev.simonbs.apple.apps.today/plugin.js -------------------------------------------------------------------------------- /dev.simonbs.apple.apps.today/ui-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/tapestry-plugins/HEAD/dev.simonbs.apple.apps.today/ui-config.json -------------------------------------------------------------------------------- /dev.simonbs.apple.newsroom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/tapestry-plugins/HEAD/dev.simonbs.apple.newsroom/README.md -------------------------------------------------------------------------------- /dev.simonbs.apple.newsroom/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/tapestry-plugins/HEAD/dev.simonbs.apple.newsroom/icon.png -------------------------------------------------------------------------------- /dev.simonbs.apple.newsroom/plugin-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/tapestry-plugins/HEAD/dev.simonbs.apple.newsroom/plugin-config.json -------------------------------------------------------------------------------- /dev.simonbs.apple.newsroom/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/tapestry-plugins/HEAD/dev.simonbs.apple.newsroom/plugin.js -------------------------------------------------------------------------------- /dev.simonbs.apple.newsroom/ui-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "inputs": [] 3 | } 4 | -------------------------------------------------------------------------------- /dev.simonbs.slack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/tapestry-plugins/HEAD/dev.simonbs.slack/README.md -------------------------------------------------------------------------------- /dev.simonbs.slack/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/tapestry-plugins/HEAD/dev.simonbs.slack/icon.png -------------------------------------------------------------------------------- /dev.simonbs.slack/plugin-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/tapestry-plugins/HEAD/dev.simonbs.slack/plugin-config.json -------------------------------------------------------------------------------- /dev.simonbs.slack/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/tapestry-plugins/HEAD/dev.simonbs.slack/plugin.js -------------------------------------------------------------------------------- /dev.simonbs.slack/ui-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/tapestry-plugins/HEAD/dev.simonbs.slack/ui-config.json -------------------------------------------------------------------------------- /dev.simonbs.youtube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/tapestry-plugins/HEAD/dev.simonbs.youtube/README.md -------------------------------------------------------------------------------- /dev.simonbs.youtube/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/tapestry-plugins/HEAD/dev.simonbs.youtube/icon.png -------------------------------------------------------------------------------- /dev.simonbs.youtube/plugin-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/tapestry-plugins/HEAD/dev.simonbs.youtube/plugin-config.json -------------------------------------------------------------------------------- /dev.simonbs.youtube/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/tapestry-plugins/HEAD/dev.simonbs.youtube/plugin.js -------------------------------------------------------------------------------- /dev.simonbs.youtube/ui-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/tapestry-plugins/HEAD/dev.simonbs.youtube/ui-config.json --------------------------------------------------------------------------------