├── .babelrc ├── .eslintrc.js ├── .gitignore ├── .node-version ├── LICENSE.md ├── README.md ├── dist ├── options.html ├── options.js └── script.js ├── img ├── icon-128.png ├── icon-16.png └── icon-48.png ├── manifest.json ├── package.json ├── script ├── build └── watch ├── src ├── options.html ├── options.ts ├── script.ts └── style.scss ├── tsconfig.json └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/github-mention-highlighter/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/github-mention-highlighter/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/jquery/src 2 | .sass-cache 3 | node_modules 4 | -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 14.4.0 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/github-mention-highlighter/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/github-mention-highlighter/HEAD/README.md -------------------------------------------------------------------------------- /dist/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/github-mention-highlighter/HEAD/dist/options.html -------------------------------------------------------------------------------- /dist/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/github-mention-highlighter/HEAD/dist/options.js -------------------------------------------------------------------------------- /dist/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/github-mention-highlighter/HEAD/dist/script.js -------------------------------------------------------------------------------- /img/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/github-mention-highlighter/HEAD/img/icon-128.png -------------------------------------------------------------------------------- /img/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/github-mention-highlighter/HEAD/img/icon-16.png -------------------------------------------------------------------------------- /img/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/github-mention-highlighter/HEAD/img/icon-48.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/github-mention-highlighter/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/github-mention-highlighter/HEAD/package.json -------------------------------------------------------------------------------- /script/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | grunt build 4 | -------------------------------------------------------------------------------- /script/watch: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | grunt watch 4 | -------------------------------------------------------------------------------- /src/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/github-mention-highlighter/HEAD/src/options.html -------------------------------------------------------------------------------- /src/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/github-mention-highlighter/HEAD/src/options.ts -------------------------------------------------------------------------------- /src/script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/github-mention-highlighter/HEAD/src/script.ts -------------------------------------------------------------------------------- /src/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/github-mention-highlighter/HEAD/src/style.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/github-mention-highlighter/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/github-mention-highlighter/HEAD/webpack.config.js --------------------------------------------------------------------------------