├── .gitignore ├── README.md ├── assets ├── demo.png ├── icon.png └── inject.js └── makefile /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchehab/Unofficial-Google-Messages-Desktop-App/HEAD/README.md -------------------------------------------------------------------------------- /assets/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchehab/Unofficial-Google-Messages-Desktop-App/HEAD/assets/demo.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchehab/Unofficial-Google-Messages-Desktop-App/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/inject.js: -------------------------------------------------------------------------------- 1 | document.title = "Messages"; 2 | -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchehab/Unofficial-Google-Messages-Desktop-App/HEAD/makefile --------------------------------------------------------------------------------