├── .gitattributes ├── .gitignore ├── README.md ├── background.js ├── content1.js ├── content2.js ├── content3.js ├── icon.png ├── icon2.png ├── icon3.png ├── jquery.js ├── manifest.json ├── popup.css ├── popup.html ├── popup.js └── screen.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbigmouth/kktixRobot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbigmouth/kktixRobot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbigmouth/kktixRobot/HEAD/README.md -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbigmouth/kktixRobot/HEAD/background.js -------------------------------------------------------------------------------- /content1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbigmouth/kktixRobot/HEAD/content1.js -------------------------------------------------------------------------------- /content2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbigmouth/kktixRobot/HEAD/content2.js -------------------------------------------------------------------------------- /content3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbigmouth/kktixRobot/HEAD/content3.js -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbigmouth/kktixRobot/HEAD/icon.png -------------------------------------------------------------------------------- /icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbigmouth/kktixRobot/HEAD/icon2.png -------------------------------------------------------------------------------- /icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbigmouth/kktixRobot/HEAD/icon3.png -------------------------------------------------------------------------------- /jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbigmouth/kktixRobot/HEAD/jquery.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbigmouth/kktixRobot/HEAD/manifest.json -------------------------------------------------------------------------------- /popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbigmouth/kktixRobot/HEAD/popup.css -------------------------------------------------------------------------------- /popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbigmouth/kktixRobot/HEAD/popup.html -------------------------------------------------------------------------------- /popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbigmouth/kktixRobot/HEAD/popup.js -------------------------------------------------------------------------------- /screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbigmouth/kktixRobot/HEAD/screen.png --------------------------------------------------------------------------------