├── README.md ├── assets ├── getFile.js ├── jquery.js ├── pop.css └── pop.js ├── background.html ├── content_script.js ├── images ├── rubik_128.png ├── rubik_16.png ├── rubik_48.png ├── rubik_64.png └── rubik_icon.png ├── manifest.json ├── options.html ├── options.js └── popup.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccforward/Auto-Refresh/HEAD/README.md -------------------------------------------------------------------------------- /assets/getFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccforward/Auto-Refresh/HEAD/assets/getFile.js -------------------------------------------------------------------------------- /assets/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccforward/Auto-Refresh/HEAD/assets/jquery.js -------------------------------------------------------------------------------- /assets/pop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccforward/Auto-Refresh/HEAD/assets/pop.css -------------------------------------------------------------------------------- /assets/pop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccforward/Auto-Refresh/HEAD/assets/pop.js -------------------------------------------------------------------------------- /background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccforward/Auto-Refresh/HEAD/background.html -------------------------------------------------------------------------------- /content_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccforward/Auto-Refresh/HEAD/content_script.js -------------------------------------------------------------------------------- /images/rubik_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccforward/Auto-Refresh/HEAD/images/rubik_128.png -------------------------------------------------------------------------------- /images/rubik_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccforward/Auto-Refresh/HEAD/images/rubik_16.png -------------------------------------------------------------------------------- /images/rubik_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccforward/Auto-Refresh/HEAD/images/rubik_48.png -------------------------------------------------------------------------------- /images/rubik_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccforward/Auto-Refresh/HEAD/images/rubik_64.png -------------------------------------------------------------------------------- /images/rubik_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccforward/Auto-Refresh/HEAD/images/rubik_icon.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccforward/Auto-Refresh/HEAD/manifest.json -------------------------------------------------------------------------------- /options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccforward/Auto-Refresh/HEAD/options.html -------------------------------------------------------------------------------- /options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccforward/Auto-Refresh/HEAD/options.js -------------------------------------------------------------------------------- /popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccforward/Auto-Refresh/HEAD/popup.html --------------------------------------------------------------------------------