├── .gitignore ├── LICENSE ├── README.md ├── background.js ├── icon-padded.png ├── icon.png ├── index.js ├── manifest.json ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | contentscript.js 2 | *.pem 3 | *.zip 4 | node_modules 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForbesLindesay/github-real-names/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForbesLindesay/github-real-names/HEAD/README.md -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForbesLindesay/github-real-names/HEAD/background.js -------------------------------------------------------------------------------- /icon-padded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForbesLindesay/github-real-names/HEAD/icon-padded.png -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForbesLindesay/github-real-names/HEAD/icon.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForbesLindesay/github-real-names/HEAD/index.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForbesLindesay/github-real-names/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForbesLindesay/github-real-names/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForbesLindesay/github-real-names/HEAD/yarn.lock --------------------------------------------------------------------------------