├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.en.md ├── README.md ├── babel.config.js ├── dist ├── 10010.js ├── App 限免优惠.js ├── Astrology.js ├── CLS Telegraph.js ├── Calendar.js ├── Calendar.scriptable ├── ChatGPT.js ├── Clean Files 2.js ├── Clean Files.js ├── CoinGecko.js ├── CoinGecko.scriptable ├── Countdown.js ├── Countdown.scriptable ├── Douban.js ├── Douban.scriptable ├── GitHub Contributions.js ├── GitHub Contributions.scriptable ├── GitHub Profile.js ├── Image Uploader.js ├── Installer.js ├── Juejin.js ├── Matrix.js ├── Matrix.scriptable ├── NAT.js ├── Olympics.js ├── OpenAI.js ├── Pet Birthday.js ├── Photo.js ├── Photos.js ├── Photos.scriptable ├── SF Symbols.js ├── SGCC.js ├── Scriptore.js ├── Send Photo.js ├── Shortcuts.js ├── Sinopec.js ├── Unicom.ui.js ├── Wallhaven.js ├── Wallhaven.scriptable ├── Weibo.js ├── Weibo.scriptable ├── Widget Sizes.js ├── Xiaohongshu.js ├── 星座屋.js ├── 湖北联通.js └── 财联社电报.js ├── docs ├── Bridge.module.md ├── Proxy.module.md ├── README.md ├── assets │ ├── 10010_small_dark.jpg │ ├── 10010_small_light.jpg │ ├── AppFree_1.png │ ├── Astrology_1.png │ ├── Astrology_2.png │ ├── CLS_dark.png │ ├── CoinGecko_1.png │ ├── CoinGecko_2.png │ ├── Douban_1.png │ ├── GitHub_1.png │ ├── GitHub_2.png │ ├── IMG_1568.PNG │ ├── IMG_1569.PNG │ ├── IMG_1570.PNG │ ├── IMG_1712.JPG │ ├── IMG_1713.JPG │ ├── Olympics_1.png │ ├── Olympics_2.png │ ├── Photos_1.png │ ├── Proxy_1.jpg │ ├── SF-Symbols_1.png │ ├── Shortcuts_1.png │ ├── Sinopec_1.png │ ├── Wallhaven_1.png │ ├── Wallhaven_2.png │ ├── Wallhaven_3.png │ ├── Weibo_1.jpg │ ├── Weibo_2.jpg │ ├── Weibo_3.jpg │ ├── calendar.jpeg │ ├── calendar_preview_1.jpg │ ├── countdown_1.jpg │ ├── logo_xhs.png │ ├── weibo_large_dark.jpg │ ├── weibo_large_light.jpg │ ├── weibo_medium_dark.jpg │ ├── weibo_medium_light.jpg │ ├── weibo_ui.jpeg │ ├── withSettings_dark.png │ └── withSettings_light.png ├── color.module.md ├── lunar.module.md ├── utils.module.md ├── widgets.module.md └── withSettings.module.md ├── package.json ├── pnpm-lock.yaml ├── rollup.config.mjs ├── scripts ├── 10010hb.js ├── 10010hb.module ├── gallery.js └── gallery.module ├── src ├── 10010.js ├── 10010.json ├── App 限免优惠.js ├── App 限免优惠.json ├── Astrology.js ├── Astrology.json ├── Bridge.module.js ├── CLS Telegraph.js ├── CLS Telegraph.json ├── Calendar.js ├── Calendar.json ├── ChatGPT.js ├── ChatGPT.json ├── Clean Files 2.js ├── Clean Files 2.json ├── Clean Files.js ├── Clean Files.json ├── CoinGecko.js ├── CoinGecko.json ├── Countdown.js ├── Countdown.json ├── Douban.js ├── Douban.json ├── GitHub Contributions.js ├── GitHub Contributions.json ├── GitHub Profile.js ├── GitHub Profile.json ├── Image Uploader.js ├── Image Uploader.json ├── Installer.js ├── Installer.json ├── Juejin.js ├── Juejin.json ├── Matrix.js ├── Matrix.json ├── NAT.js ├── NAT.json ├── Olympics.js ├── Olympics.json ├── OpenAI.js ├── OpenAI.json ├── Pet Birthday.js ├── Pet Birthday.json ├── Photo.js ├── Photo.json ├── Photos.js ├── Photos.json ├── Proxy.module.js ├── SF Symbols.js ├── SF Symbols.json ├── SGCC.js ├── SGCC.json ├── Scriptore.js ├── Scriptore.json ├── Send Photo.js ├── Send Photo.json ├── Shortcuts.js ├── Shortcuts.json ├── Sinopec.js ├── Sinopec.json ├── Unicom.ui.js ├── Wallhaven.js ├── Wallhaven.json ├── Weibo.js ├── Weibo.json ├── Widget Sizes.js ├── Widget Sizes.json ├── Xiaohongshu.js ├── Xiaohongshu.json ├── chart.module.js ├── color.module.js ├── lunar.module.js ├── no-background.js ├── nobg.module.js ├── utils.module.js ├── utils │ └── utils.js ├── widgets.module.js ├── withSettings.module.js ├── 星座屋.js ├── 星座屋.json ├── 湖北联通.js └── 湖北联通.json ├── static ├── sgcc.png ├── unicom.png └── unicom_bg.png └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | src/no-background.js 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | /node_modules/ 4 | 5 | /src/Config.js 6 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/README.en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/babel.config.js -------------------------------------------------------------------------------- /dist/10010.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/10010.js -------------------------------------------------------------------------------- /dist/App 限免优惠.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/App 限免优惠.js -------------------------------------------------------------------------------- /dist/Astrology.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Astrology.js -------------------------------------------------------------------------------- /dist/CLS Telegraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/CLS Telegraph.js -------------------------------------------------------------------------------- /dist/Calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Calendar.js -------------------------------------------------------------------------------- /dist/Calendar.scriptable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Calendar.scriptable -------------------------------------------------------------------------------- /dist/ChatGPT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/ChatGPT.js -------------------------------------------------------------------------------- /dist/Clean Files 2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Clean Files 2.js -------------------------------------------------------------------------------- /dist/Clean Files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Clean Files.js -------------------------------------------------------------------------------- /dist/CoinGecko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/CoinGecko.js -------------------------------------------------------------------------------- /dist/CoinGecko.scriptable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/CoinGecko.scriptable -------------------------------------------------------------------------------- /dist/Countdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Countdown.js -------------------------------------------------------------------------------- /dist/Countdown.scriptable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Countdown.scriptable -------------------------------------------------------------------------------- /dist/Douban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Douban.js -------------------------------------------------------------------------------- /dist/Douban.scriptable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Douban.scriptable -------------------------------------------------------------------------------- /dist/GitHub Contributions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/GitHub Contributions.js -------------------------------------------------------------------------------- /dist/GitHub Contributions.scriptable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/GitHub Contributions.scriptable -------------------------------------------------------------------------------- /dist/GitHub Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/GitHub Profile.js -------------------------------------------------------------------------------- /dist/Image Uploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Image Uploader.js -------------------------------------------------------------------------------- /dist/Installer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Installer.js -------------------------------------------------------------------------------- /dist/Juejin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Juejin.js -------------------------------------------------------------------------------- /dist/Matrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Matrix.js -------------------------------------------------------------------------------- /dist/Matrix.scriptable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Matrix.scriptable -------------------------------------------------------------------------------- /dist/NAT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/NAT.js -------------------------------------------------------------------------------- /dist/Olympics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Olympics.js -------------------------------------------------------------------------------- /dist/OpenAI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/OpenAI.js -------------------------------------------------------------------------------- /dist/Pet Birthday.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Pet Birthday.js -------------------------------------------------------------------------------- /dist/Photo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Photo.js -------------------------------------------------------------------------------- /dist/Photos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Photos.js -------------------------------------------------------------------------------- /dist/Photos.scriptable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Photos.scriptable -------------------------------------------------------------------------------- /dist/SF Symbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/SF Symbols.js -------------------------------------------------------------------------------- /dist/SGCC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/SGCC.js -------------------------------------------------------------------------------- /dist/Scriptore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Scriptore.js -------------------------------------------------------------------------------- /dist/Send Photo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Send Photo.js -------------------------------------------------------------------------------- /dist/Shortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Shortcuts.js -------------------------------------------------------------------------------- /dist/Sinopec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Sinopec.js -------------------------------------------------------------------------------- /dist/Unicom.ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Unicom.ui.js -------------------------------------------------------------------------------- /dist/Wallhaven.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Wallhaven.js -------------------------------------------------------------------------------- /dist/Wallhaven.scriptable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Wallhaven.scriptable -------------------------------------------------------------------------------- /dist/Weibo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Weibo.js -------------------------------------------------------------------------------- /dist/Weibo.scriptable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Weibo.scriptable -------------------------------------------------------------------------------- /dist/Widget Sizes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Widget Sizes.js -------------------------------------------------------------------------------- /dist/Xiaohongshu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/Xiaohongshu.js -------------------------------------------------------------------------------- /dist/星座屋.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/星座屋.js -------------------------------------------------------------------------------- /dist/湖北联通.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/湖北联通.js -------------------------------------------------------------------------------- /dist/财联社电报.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/dist/财联社电报.js -------------------------------------------------------------------------------- /docs/Bridge.module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/Bridge.module.md -------------------------------------------------------------------------------- /docs/Proxy.module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/Proxy.module.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/assets/10010_small_dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/10010_small_dark.jpg -------------------------------------------------------------------------------- /docs/assets/10010_small_light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/10010_small_light.jpg -------------------------------------------------------------------------------- /docs/assets/AppFree_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/AppFree_1.png -------------------------------------------------------------------------------- /docs/assets/Astrology_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/Astrology_1.png -------------------------------------------------------------------------------- /docs/assets/Astrology_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/Astrology_2.png -------------------------------------------------------------------------------- /docs/assets/CLS_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/CLS_dark.png -------------------------------------------------------------------------------- /docs/assets/CoinGecko_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/CoinGecko_1.png -------------------------------------------------------------------------------- /docs/assets/CoinGecko_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/CoinGecko_2.png -------------------------------------------------------------------------------- /docs/assets/Douban_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/Douban_1.png -------------------------------------------------------------------------------- /docs/assets/GitHub_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/GitHub_1.png -------------------------------------------------------------------------------- /docs/assets/GitHub_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/GitHub_2.png -------------------------------------------------------------------------------- /docs/assets/IMG_1568.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/IMG_1568.PNG -------------------------------------------------------------------------------- /docs/assets/IMG_1569.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/IMG_1569.PNG -------------------------------------------------------------------------------- /docs/assets/IMG_1570.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/IMG_1570.PNG -------------------------------------------------------------------------------- /docs/assets/IMG_1712.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/IMG_1712.JPG -------------------------------------------------------------------------------- /docs/assets/IMG_1713.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/IMG_1713.JPG -------------------------------------------------------------------------------- /docs/assets/Olympics_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/Olympics_1.png -------------------------------------------------------------------------------- /docs/assets/Olympics_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/Olympics_2.png -------------------------------------------------------------------------------- /docs/assets/Photos_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/Photos_1.png -------------------------------------------------------------------------------- /docs/assets/Proxy_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/Proxy_1.jpg -------------------------------------------------------------------------------- /docs/assets/SF-Symbols_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/SF-Symbols_1.png -------------------------------------------------------------------------------- /docs/assets/Shortcuts_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/Shortcuts_1.png -------------------------------------------------------------------------------- /docs/assets/Sinopec_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/Sinopec_1.png -------------------------------------------------------------------------------- /docs/assets/Wallhaven_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/Wallhaven_1.png -------------------------------------------------------------------------------- /docs/assets/Wallhaven_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/Wallhaven_2.png -------------------------------------------------------------------------------- /docs/assets/Wallhaven_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/Wallhaven_3.png -------------------------------------------------------------------------------- /docs/assets/Weibo_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/Weibo_1.jpg -------------------------------------------------------------------------------- /docs/assets/Weibo_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/Weibo_2.jpg -------------------------------------------------------------------------------- /docs/assets/Weibo_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/Weibo_3.jpg -------------------------------------------------------------------------------- /docs/assets/calendar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/calendar.jpeg -------------------------------------------------------------------------------- /docs/assets/calendar_preview_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/calendar_preview_1.jpg -------------------------------------------------------------------------------- /docs/assets/countdown_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/countdown_1.jpg -------------------------------------------------------------------------------- /docs/assets/logo_xhs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/logo_xhs.png -------------------------------------------------------------------------------- /docs/assets/weibo_large_dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/weibo_large_dark.jpg -------------------------------------------------------------------------------- /docs/assets/weibo_large_light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/weibo_large_light.jpg -------------------------------------------------------------------------------- /docs/assets/weibo_medium_dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/weibo_medium_dark.jpg -------------------------------------------------------------------------------- /docs/assets/weibo_medium_light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/weibo_medium_light.jpg -------------------------------------------------------------------------------- /docs/assets/weibo_ui.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/weibo_ui.jpeg -------------------------------------------------------------------------------- /docs/assets/withSettings_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/withSettings_dark.png -------------------------------------------------------------------------------- /docs/assets/withSettings_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/assets/withSettings_light.png -------------------------------------------------------------------------------- /docs/color.module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/color.module.md -------------------------------------------------------------------------------- /docs/lunar.module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/lunar.module.md -------------------------------------------------------------------------------- /docs/utils.module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/utils.module.md -------------------------------------------------------------------------------- /docs/widgets.module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/widgets.module.md -------------------------------------------------------------------------------- /docs/withSettings.module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/docs/withSettings.module.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /scripts/10010hb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/scripts/10010hb.js -------------------------------------------------------------------------------- /scripts/10010hb.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/scripts/10010hb.module -------------------------------------------------------------------------------- /scripts/gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/scripts/gallery.js -------------------------------------------------------------------------------- /scripts/gallery.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/scripts/gallery.module -------------------------------------------------------------------------------- /src/10010.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/10010.js -------------------------------------------------------------------------------- /src/10010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/10010.json -------------------------------------------------------------------------------- /src/App 限免优惠.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/App 限免优惠.js -------------------------------------------------------------------------------- /src/App 限免优惠.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/App 限免优惠.json -------------------------------------------------------------------------------- /src/Astrology.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Astrology.js -------------------------------------------------------------------------------- /src/Astrology.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Astrology.json -------------------------------------------------------------------------------- /src/Bridge.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Bridge.module.js -------------------------------------------------------------------------------- /src/CLS Telegraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/CLS Telegraph.js -------------------------------------------------------------------------------- /src/CLS Telegraph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/CLS Telegraph.json -------------------------------------------------------------------------------- /src/Calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Calendar.js -------------------------------------------------------------------------------- /src/Calendar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Calendar.json -------------------------------------------------------------------------------- /src/ChatGPT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/ChatGPT.js -------------------------------------------------------------------------------- /src/ChatGPT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/ChatGPT.json -------------------------------------------------------------------------------- /src/Clean Files 2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Clean Files 2.js -------------------------------------------------------------------------------- /src/Clean Files 2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Clean Files 2.json -------------------------------------------------------------------------------- /src/Clean Files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Clean Files.js -------------------------------------------------------------------------------- /src/Clean Files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Clean Files.json -------------------------------------------------------------------------------- /src/CoinGecko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/CoinGecko.js -------------------------------------------------------------------------------- /src/CoinGecko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/CoinGecko.json -------------------------------------------------------------------------------- /src/Countdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Countdown.js -------------------------------------------------------------------------------- /src/Countdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Countdown.json -------------------------------------------------------------------------------- /src/Douban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Douban.js -------------------------------------------------------------------------------- /src/Douban.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Douban.json -------------------------------------------------------------------------------- /src/GitHub Contributions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/GitHub Contributions.js -------------------------------------------------------------------------------- /src/GitHub Contributions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/GitHub Contributions.json -------------------------------------------------------------------------------- /src/GitHub Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/GitHub Profile.js -------------------------------------------------------------------------------- /src/GitHub Profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/GitHub Profile.json -------------------------------------------------------------------------------- /src/Image Uploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Image Uploader.js -------------------------------------------------------------------------------- /src/Image Uploader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Image Uploader.json -------------------------------------------------------------------------------- /src/Installer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Installer.js -------------------------------------------------------------------------------- /src/Installer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Installer.json -------------------------------------------------------------------------------- /src/Juejin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Juejin.js -------------------------------------------------------------------------------- /src/Juejin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Juejin.json -------------------------------------------------------------------------------- /src/Matrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Matrix.js -------------------------------------------------------------------------------- /src/Matrix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Matrix.json -------------------------------------------------------------------------------- /src/NAT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/NAT.js -------------------------------------------------------------------------------- /src/NAT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/NAT.json -------------------------------------------------------------------------------- /src/Olympics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Olympics.js -------------------------------------------------------------------------------- /src/Olympics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Olympics.json -------------------------------------------------------------------------------- /src/OpenAI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/OpenAI.js -------------------------------------------------------------------------------- /src/OpenAI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/OpenAI.json -------------------------------------------------------------------------------- /src/Pet Birthday.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Pet Birthday.js -------------------------------------------------------------------------------- /src/Pet Birthday.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Pet Birthday.json -------------------------------------------------------------------------------- /src/Photo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Photo.js -------------------------------------------------------------------------------- /src/Photo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Photo.json -------------------------------------------------------------------------------- /src/Photos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Photos.js -------------------------------------------------------------------------------- /src/Photos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Photos.json -------------------------------------------------------------------------------- /src/Proxy.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Proxy.module.js -------------------------------------------------------------------------------- /src/SF Symbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/SF Symbols.js -------------------------------------------------------------------------------- /src/SF Symbols.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/SF Symbols.json -------------------------------------------------------------------------------- /src/SGCC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/SGCC.js -------------------------------------------------------------------------------- /src/SGCC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/SGCC.json -------------------------------------------------------------------------------- /src/Scriptore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Scriptore.js -------------------------------------------------------------------------------- /src/Scriptore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Scriptore.json -------------------------------------------------------------------------------- /src/Send Photo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Send Photo.js -------------------------------------------------------------------------------- /src/Send Photo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Send Photo.json -------------------------------------------------------------------------------- /src/Shortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Shortcuts.js -------------------------------------------------------------------------------- /src/Shortcuts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Shortcuts.json -------------------------------------------------------------------------------- /src/Sinopec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Sinopec.js -------------------------------------------------------------------------------- /src/Sinopec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Sinopec.json -------------------------------------------------------------------------------- /src/Unicom.ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Unicom.ui.js -------------------------------------------------------------------------------- /src/Wallhaven.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Wallhaven.js -------------------------------------------------------------------------------- /src/Wallhaven.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Wallhaven.json -------------------------------------------------------------------------------- /src/Weibo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Weibo.js -------------------------------------------------------------------------------- /src/Weibo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Weibo.json -------------------------------------------------------------------------------- /src/Widget Sizes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Widget Sizes.js -------------------------------------------------------------------------------- /src/Widget Sizes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Widget Sizes.json -------------------------------------------------------------------------------- /src/Xiaohongshu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Xiaohongshu.js -------------------------------------------------------------------------------- /src/Xiaohongshu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/Xiaohongshu.json -------------------------------------------------------------------------------- /src/chart.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/chart.module.js -------------------------------------------------------------------------------- /src/color.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/color.module.js -------------------------------------------------------------------------------- /src/lunar.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/lunar.module.js -------------------------------------------------------------------------------- /src/no-background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/no-background.js -------------------------------------------------------------------------------- /src/nobg.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/nobg.module.js -------------------------------------------------------------------------------- /src/utils.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/utils.module.js -------------------------------------------------------------------------------- /src/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/utils/utils.js -------------------------------------------------------------------------------- /src/widgets.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/widgets.module.js -------------------------------------------------------------------------------- /src/withSettings.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/withSettings.module.js -------------------------------------------------------------------------------- /src/星座屋.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/星座屋.js -------------------------------------------------------------------------------- /src/星座屋.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/星座屋.json -------------------------------------------------------------------------------- /src/湖北联通.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/湖北联通.js -------------------------------------------------------------------------------- /src/湖北联通.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/src/湖北联通.json -------------------------------------------------------------------------------- /static/sgcc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/static/sgcc.png -------------------------------------------------------------------------------- /static/unicom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/static/unicom.png -------------------------------------------------------------------------------- /static/unicom_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/static/unicom_bg.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honye/scriptable-scripts/HEAD/tsconfig.json --------------------------------------------------------------------------------