├── .gitignore ├── README.md └── hipda ├── background.js ├── clouddemo.html ├── contentscript.js ├── gbk.js ├── icloudlist.js ├── images ├── 128x.png ├── 16x.png ├── 32x.png └── 48x.png ├── jquery3.js ├── manifest.json ├── popup ├── bootstrap-switch.min.css ├── bootstrap-switch.min.js ├── bootstrap.bundle.min.js ├── bootstrap.min.css ├── popup.html └── popup.js └── topcolor.js /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fqxufo/hipda-helper/HEAD/README.md -------------------------------------------------------------------------------- /hipda/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fqxufo/hipda-helper/HEAD/hipda/background.js -------------------------------------------------------------------------------- /hipda/clouddemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fqxufo/hipda-helper/HEAD/hipda/clouddemo.html -------------------------------------------------------------------------------- /hipda/contentscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fqxufo/hipda-helper/HEAD/hipda/contentscript.js -------------------------------------------------------------------------------- /hipda/gbk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fqxufo/hipda-helper/HEAD/hipda/gbk.js -------------------------------------------------------------------------------- /hipda/icloudlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fqxufo/hipda-helper/HEAD/hipda/icloudlist.js -------------------------------------------------------------------------------- /hipda/images/128x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fqxufo/hipda-helper/HEAD/hipda/images/128x.png -------------------------------------------------------------------------------- /hipda/images/16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fqxufo/hipda-helper/HEAD/hipda/images/16x.png -------------------------------------------------------------------------------- /hipda/images/32x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fqxufo/hipda-helper/HEAD/hipda/images/32x.png -------------------------------------------------------------------------------- /hipda/images/48x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fqxufo/hipda-helper/HEAD/hipda/images/48x.png -------------------------------------------------------------------------------- /hipda/jquery3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fqxufo/hipda-helper/HEAD/hipda/jquery3.js -------------------------------------------------------------------------------- /hipda/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fqxufo/hipda-helper/HEAD/hipda/manifest.json -------------------------------------------------------------------------------- /hipda/popup/bootstrap-switch.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fqxufo/hipda-helper/HEAD/hipda/popup/bootstrap-switch.min.css -------------------------------------------------------------------------------- /hipda/popup/bootstrap-switch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fqxufo/hipda-helper/HEAD/hipda/popup/bootstrap-switch.min.js -------------------------------------------------------------------------------- /hipda/popup/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fqxufo/hipda-helper/HEAD/hipda/popup/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /hipda/popup/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fqxufo/hipda-helper/HEAD/hipda/popup/bootstrap.min.css -------------------------------------------------------------------------------- /hipda/popup/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fqxufo/hipda-helper/HEAD/hipda/popup/popup.html -------------------------------------------------------------------------------- /hipda/popup/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fqxufo/hipda-helper/HEAD/hipda/popup/popup.js -------------------------------------------------------------------------------- /hipda/topcolor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fqxufo/hipda-helper/HEAD/hipda/topcolor.js --------------------------------------------------------------------------------