├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── app ├── IPTV.js ├── acgGirl.js ├── acgPPT.js ├── cache.module.js ├── dogDiary.js ├── http.module.js ├── iLottery.js ├── poetry.js ├── priceReminder.js ├── rStore.js ├── shadiao.js ├── showPhoto.js ├── spark-md5.min.js ├── todayHistory.js ├── videoHelper.js └── zhihuHot.js ├── demo ├── alert_demo.js ├── dictation_demo.js ├── keychain_demo.js ├── location_demo.js ├── message_demo.js ├── request_demo.js ├── speech_demo.js ├── uitable_demo.js ├── webview_demo.js └── widget_demo.js ├── outputs └── zhihu_hotlist.json └── screenshot ├── DownloadVideo_shortcut_qrcode.png ├── Install_rStore_shortcut_qrcode.png ├── acgGirl.png ├── acgGirl_config.png ├── acgPPT.gif ├── alert_demo.png ├── apps_on_macOS.png ├── dogDiary.png ├── iLottery.png ├── poetry.png ├── priceReminder.png ├── rStore.png ├── shortcut.png ├── showPhoto_1.png ├── showPhoto_2.png ├── todayHistory.png ├── uitable_demo.png ├── videoHelper_flow.png ├── videoHelper_flow2.png ├── watching-iptv.gif ├── webview_demo.png ├── widget_demo.png └── zhihuHot.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | tmp/ 2 | rstore/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/README.md -------------------------------------------------------------------------------- /app/IPTV.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/app/IPTV.js -------------------------------------------------------------------------------- /app/acgGirl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/app/acgGirl.js -------------------------------------------------------------------------------- /app/acgPPT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/app/acgPPT.js -------------------------------------------------------------------------------- /app/cache.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/app/cache.module.js -------------------------------------------------------------------------------- /app/dogDiary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/app/dogDiary.js -------------------------------------------------------------------------------- /app/http.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/app/http.module.js -------------------------------------------------------------------------------- /app/iLottery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/app/iLottery.js -------------------------------------------------------------------------------- /app/poetry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/app/poetry.js -------------------------------------------------------------------------------- /app/priceReminder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/app/priceReminder.js -------------------------------------------------------------------------------- /app/rStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/app/rStore.js -------------------------------------------------------------------------------- /app/shadiao.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/app/shadiao.js -------------------------------------------------------------------------------- /app/showPhoto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/app/showPhoto.js -------------------------------------------------------------------------------- /app/spark-md5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/app/spark-md5.min.js -------------------------------------------------------------------------------- /app/todayHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/app/todayHistory.js -------------------------------------------------------------------------------- /app/videoHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/app/videoHelper.js -------------------------------------------------------------------------------- /app/zhihuHot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/app/zhihuHot.js -------------------------------------------------------------------------------- /demo/alert_demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/demo/alert_demo.js -------------------------------------------------------------------------------- /demo/dictation_demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/demo/dictation_demo.js -------------------------------------------------------------------------------- /demo/keychain_demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/demo/keychain_demo.js -------------------------------------------------------------------------------- /demo/location_demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/demo/location_demo.js -------------------------------------------------------------------------------- /demo/message_demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/demo/message_demo.js -------------------------------------------------------------------------------- /demo/request_demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/demo/request_demo.js -------------------------------------------------------------------------------- /demo/speech_demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/demo/speech_demo.js -------------------------------------------------------------------------------- /demo/uitable_demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/demo/uitable_demo.js -------------------------------------------------------------------------------- /demo/webview_demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/demo/webview_demo.js -------------------------------------------------------------------------------- /demo/widget_demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/demo/widget_demo.js -------------------------------------------------------------------------------- /outputs/zhihu_hotlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/outputs/zhihu_hotlist.json -------------------------------------------------------------------------------- /screenshot/DownloadVideo_shortcut_qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/screenshot/DownloadVideo_shortcut_qrcode.png -------------------------------------------------------------------------------- /screenshot/Install_rStore_shortcut_qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/screenshot/Install_rStore_shortcut_qrcode.png -------------------------------------------------------------------------------- /screenshot/acgGirl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/screenshot/acgGirl.png -------------------------------------------------------------------------------- /screenshot/acgGirl_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/screenshot/acgGirl_config.png -------------------------------------------------------------------------------- /screenshot/acgPPT.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/screenshot/acgPPT.gif -------------------------------------------------------------------------------- /screenshot/alert_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/screenshot/alert_demo.png -------------------------------------------------------------------------------- /screenshot/apps_on_macOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/screenshot/apps_on_macOS.png -------------------------------------------------------------------------------- /screenshot/dogDiary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/screenshot/dogDiary.png -------------------------------------------------------------------------------- /screenshot/iLottery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/screenshot/iLottery.png -------------------------------------------------------------------------------- /screenshot/poetry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/screenshot/poetry.png -------------------------------------------------------------------------------- /screenshot/priceReminder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/screenshot/priceReminder.png -------------------------------------------------------------------------------- /screenshot/rStore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/screenshot/rStore.png -------------------------------------------------------------------------------- /screenshot/shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/screenshot/shortcut.png -------------------------------------------------------------------------------- /screenshot/showPhoto_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/screenshot/showPhoto_1.png -------------------------------------------------------------------------------- /screenshot/showPhoto_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/screenshot/showPhoto_2.png -------------------------------------------------------------------------------- /screenshot/todayHistory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/screenshot/todayHistory.png -------------------------------------------------------------------------------- /screenshot/uitable_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/screenshot/uitable_demo.png -------------------------------------------------------------------------------- /screenshot/videoHelper_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/screenshot/videoHelper_flow.png -------------------------------------------------------------------------------- /screenshot/videoHelper_flow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/screenshot/videoHelper_flow2.png -------------------------------------------------------------------------------- /screenshot/watching-iptv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/screenshot/watching-iptv.gif -------------------------------------------------------------------------------- /screenshot/webview_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/screenshot/webview_demo.png -------------------------------------------------------------------------------- /screenshot/widget_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/screenshot/widget_demo.png -------------------------------------------------------------------------------- /screenshot/zhihuHot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycrao/scripts-for-scriptable/HEAD/screenshot/zhihuHot.png --------------------------------------------------------------------------------