├── .gitignore ├── LICENSE ├── README.md ├── background.js ├── img ├── icon-128x128.png ├── icon-32x32.png └── icon-64x64.png ├── manifest.json ├── switch.js └── toggle.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashutoshrathi/GitHub-Dash-Aligner/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashutoshrathi/GitHub-Dash-Aligner/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashutoshrathi/GitHub-Dash-Aligner/HEAD/README.md -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashutoshrathi/GitHub-Dash-Aligner/HEAD/background.js -------------------------------------------------------------------------------- /img/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashutoshrathi/GitHub-Dash-Aligner/HEAD/img/icon-128x128.png -------------------------------------------------------------------------------- /img/icon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashutoshrathi/GitHub-Dash-Aligner/HEAD/img/icon-32x32.png -------------------------------------------------------------------------------- /img/icon-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashutoshrathi/GitHub-Dash-Aligner/HEAD/img/icon-64x64.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashutoshrathi/GitHub-Dash-Aligner/HEAD/manifest.json -------------------------------------------------------------------------------- /switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashutoshrathi/GitHub-Dash-Aligner/HEAD/switch.js -------------------------------------------------------------------------------- /toggle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashutoshrathi/GitHub-Dash-Aligner/HEAD/toggle.css --------------------------------------------------------------------------------