├── LICENSE ├── README.md ├── images └── screenshot.png ├── install.sh ├── po ├── Reboot2Windows@coooolfan.com.pot ├── hu.po ├── zh.mo └── zh.po └── src ├── extension.js ├── metadata.json └── stylesheet.css /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coooolfan/Reboot2Windows/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coooolfan/Reboot2Windows/HEAD/README.md -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coooolfan/Reboot2Windows/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coooolfan/Reboot2Windows/HEAD/install.sh -------------------------------------------------------------------------------- /po/Reboot2Windows@coooolfan.com.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coooolfan/Reboot2Windows/HEAD/po/Reboot2Windows@coooolfan.com.pot -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coooolfan/Reboot2Windows/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/zh.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coooolfan/Reboot2Windows/HEAD/po/zh.mo -------------------------------------------------------------------------------- /po/zh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coooolfan/Reboot2Windows/HEAD/po/zh.po -------------------------------------------------------------------------------- /src/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coooolfan/Reboot2Windows/HEAD/src/extension.js -------------------------------------------------------------------------------- /src/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coooolfan/Reboot2Windows/HEAD/src/metadata.json -------------------------------------------------------------------------------- /src/stylesheet.css: -------------------------------------------------------------------------------- 1 | /* Add your custom extension styling here */ 2 | --------------------------------------------------------------------------------