├── .gitignore ├── .vscode └── settings.json ├── Gruntfile.js ├── LICENSE ├── README.md ├── css ├── clr-ui-dark.css ├── context-menu-fix.css ├── datagrid-fix.css ├── datastore-fix.css ├── dialog-fix.css ├── fixes.css ├── graph-fix.css ├── icon-fix.css ├── konami-fix.css ├── scrollbar-fix.css ├── shortcut-fix.css ├── stack-fix.css ├── task-event-fix.css ├── topology-fix.css ├── treeview-fix.css └── vx-fix.css ├── icon128.png ├── icon512.png ├── images ├── svg-sprite.svg ├── tux.png └── windows.png ├── inject.js ├── manifest.json ├── package.json └── screenshot1.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/README.md -------------------------------------------------------------------------------- /css/clr-ui-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/css/clr-ui-dark.css -------------------------------------------------------------------------------- /css/context-menu-fix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/css/context-menu-fix.css -------------------------------------------------------------------------------- /css/datagrid-fix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/css/datagrid-fix.css -------------------------------------------------------------------------------- /css/datastore-fix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/css/datastore-fix.css -------------------------------------------------------------------------------- /css/dialog-fix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/css/dialog-fix.css -------------------------------------------------------------------------------- /css/fixes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/css/fixes.css -------------------------------------------------------------------------------- /css/graph-fix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/css/graph-fix.css -------------------------------------------------------------------------------- /css/icon-fix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/css/icon-fix.css -------------------------------------------------------------------------------- /css/konami-fix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/css/konami-fix.css -------------------------------------------------------------------------------- /css/scrollbar-fix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/css/scrollbar-fix.css -------------------------------------------------------------------------------- /css/shortcut-fix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/css/shortcut-fix.css -------------------------------------------------------------------------------- /css/stack-fix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/css/stack-fix.css -------------------------------------------------------------------------------- /css/task-event-fix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/css/task-event-fix.css -------------------------------------------------------------------------------- /css/topology-fix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/css/topology-fix.css -------------------------------------------------------------------------------- /css/treeview-fix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/css/treeview-fix.css -------------------------------------------------------------------------------- /css/vx-fix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/css/vx-fix.css -------------------------------------------------------------------------------- /icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/icon128.png -------------------------------------------------------------------------------- /icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/icon512.png -------------------------------------------------------------------------------- /images/svg-sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/images/svg-sprite.svg -------------------------------------------------------------------------------- /images/tux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/images/tux.png -------------------------------------------------------------------------------- /images/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/images/windows.png -------------------------------------------------------------------------------- /inject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/inject.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/package.json -------------------------------------------------------------------------------- /screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeryJu/dark-vcenter/HEAD/screenshot1.png --------------------------------------------------------------------------------