├── .github └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── LICENSE ├── README.md ├── appnativefy.js ├── gifs ├── animated.gif ├── animation.gif ├── dock.png ├── examples.png └── messenger-appimage.png ├── icon.png ├── package.json ├── script.sh └── style.css /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarwesh00/appnativefy/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarwesh00/appnativefy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarwesh00/appnativefy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarwesh00/appnativefy/HEAD/README.md -------------------------------------------------------------------------------- /appnativefy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarwesh00/appnativefy/HEAD/appnativefy.js -------------------------------------------------------------------------------- /gifs/animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarwesh00/appnativefy/HEAD/gifs/animated.gif -------------------------------------------------------------------------------- /gifs/animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarwesh00/appnativefy/HEAD/gifs/animation.gif -------------------------------------------------------------------------------- /gifs/dock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarwesh00/appnativefy/HEAD/gifs/dock.png -------------------------------------------------------------------------------- /gifs/examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarwesh00/appnativefy/HEAD/gifs/examples.png -------------------------------------------------------------------------------- /gifs/messenger-appimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarwesh00/appnativefy/HEAD/gifs/messenger-appimage.png -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarwesh00/appnativefy/HEAD/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarwesh00/appnativefy/HEAD/package.json -------------------------------------------------------------------------------- /script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarwesh00/appnativefy/HEAD/script.sh -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarwesh00/appnativefy/HEAD/style.css --------------------------------------------------------------------------------