├── .gitattributes ├── .gitignore ├── css └── styles.css ├── icon.png ├── js └── jquery.min.js ├── manifest.json ├── popup.html └── popup.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddpress/Looky_Booky/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddpress/Looky_Booky/HEAD/.gitignore -------------------------------------------------------------------------------- /css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddpress/Looky_Booky/HEAD/css/styles.css -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddpress/Looky_Booky/HEAD/icon.png -------------------------------------------------------------------------------- /js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddpress/Looky_Booky/HEAD/js/jquery.min.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddpress/Looky_Booky/HEAD/manifest.json -------------------------------------------------------------------------------- /popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddpress/Looky_Booky/HEAD/popup.html -------------------------------------------------------------------------------- /popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddpress/Looky_Booky/HEAD/popup.js --------------------------------------------------------------------------------