├── .editorconfig ├── .eslintrc.json ├── Components └── tag.jsx ├── LICENSE ├── README.md ├── index.js ├── jsconfig.json ├── manifest.json └── style.css /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenSegal855/webhook-tag/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenSegal855/webhook-tag/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /Components/tag.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenSegal855/webhook-tag/HEAD/Components/tag.jsx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenSegal855/webhook-tag/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenSegal855/webhook-tag/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenSegal855/webhook-tag/HEAD/index.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenSegal855/webhook-tag/HEAD/jsconfig.json -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenSegal855/webhook-tag/HEAD/manifest.json -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | .webhook-tag-pop-out { 2 | margin-top: -2px !important; 3 | } 4 | --------------------------------------------------------------------------------