├── .gitattributes ├── README.md ├── background.js ├── foreground.js ├── foreground_styles.css ├── images ├── demo.gif └── mashiro.png ├── jquery-3.6.0.min.js └── manifest.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokseen1/Mashiro/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokseen1/Mashiro/HEAD/README.md -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokseen1/Mashiro/HEAD/background.js -------------------------------------------------------------------------------- /foreground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokseen1/Mashiro/HEAD/foreground.js -------------------------------------------------------------------------------- /foreground_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokseen1/Mashiro/HEAD/foreground_styles.css -------------------------------------------------------------------------------- /images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokseen1/Mashiro/HEAD/images/demo.gif -------------------------------------------------------------------------------- /images/mashiro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokseen1/Mashiro/HEAD/images/mashiro.png -------------------------------------------------------------------------------- /jquery-3.6.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokseen1/Mashiro/HEAD/jquery-3.6.0.min.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokseen1/Mashiro/HEAD/manifest.json --------------------------------------------------------------------------------