魂签,一款用于自动签到的Chrome插件
这里存放由我创建或改进的魂签 (Soulsign) 脚本
- 从这里复制你想要的脚本 Raw URL
- 打开魂签「任务管理」
- 点击「添加脚本」按钮
- 粘贴 URL 并点击「保存」按钮
| You are Manus, an AI agent created by the Manus team. | |
| You excel at the following tasks: | |
| 1. Information gathering, fact-checking, and documentation | |
| 2. Data processing, analysis, and visualization | |
| 3. Writing multi-chapter articles and in-depth research reports | |
| 4. Creating websites, applications, and tools | |
| 5. Using programming to solve various problems beyond development | |
| 6. Various tasks that can be accomplished using computers and the internet |
| #!/usr/bin/env bash | |
| # Download metadata, modify these as your needs. | |
| ## The directory to save the downloaded files. | |
| download_directory="/volume1/Download/EPUB" | |
| ## The website you want to visit. | |
| calibre_site="http://soulseeker.myds.me:25788" | |
| ## The formats you want to download. We only download the first present format. | |
| ## All the formats should be upper case. | |
| allow_formats=( EPUB MOBI AZW3 ) |
| #!/usr/bin/env bash | |
| # by Matt Sephton @gingerbeardman | |
| # requires SynoCommunity ffmpeg to be installed | |
| log="/volume1/video/Scripts/faststart.log" | |
| work="/volume1/video/Scripts/" | |
| start="../" | |
| export log |
| #!/usr/bin/env bash | |
| # by Matt Sephton @gingerbeardman | |
| # requires SynoCommunity ffmpeg to be installed | |
| log="/volume1/video/Scripts/remux.log" | |
| bin="/volume1/video/#recycle/" | |
| work="/volume1/video/Scripts/" | |
| export log |
| // Modified from @mutsuda's https://medium.com/@mutsuda/create-an-ios-widget-showing-google-spreadsheets-data-856767a9447e | |
| // by @levelsio | |
| // HOW TO | |
| // 1) Make a Google Sheet, we'll pull the first cell e.g. A1 | |
| // 2) Publish your Google Sheet, File -> Publish To Web | |
| // 3) Copy the SHEET_ID in the URL, put it in here below: | |
| const endpoint = "https://spreadsheets.google.com/feeds/cells/SHEET_ID/1/public/full?alt=json" | |
| // 4) Install Scriptable @ https://apps.apple.com/us/app/scriptable/id1405459188 | |
| // 5) Copy this entire script in to Scriptable (tip: you can send it to your iPhone via Whatsapp/Messenger/Telegram etc) |
| // Variables used by Scriptable. | |
| // These must be at the very top of the file. Do not edit. | |
| // icon-color: blue; icon-glyph: camera-retro; | |
| // Script by Andreas Redeker <hello@andreasredeker.de> | |
| let param = args.widgetParameter | |
| let url | |
| if (param != null && param.length > 0) { | |
| url = param |
| // Forked from https://gist.github.com/marco79cgn/23ce08fd8711ee893a3be12d4543f2d2 | |
| // Nov 7th 2020 16:44 CET | |
| /* | |
| Scriptable iOS widget that shows the latest co2 amount in the air in the Hafven Coworking, Maker and Meeting Spaces | |
| Installation guide: | |
| 1. Install Scriptable App on your iOS device | |
| 2. Create a new script inside the Scriptable App by tapping the '+' in the upper right corner | |
| 3. Copy and paste this script into the scipt window and name the script the way you want |
| // start with this | |
| let widget = new ListWidget() | |
| // | |
| // Set colors | |
| let bidenColor = new Color("1a68ff") | |
| let trumpColor = new Color("ff4a43") | |
| let bidenColor2 = new Color("1a68ff", 0.8) | |
| let trumpColor2 = new Color("ff4a43", 0.8) |
| // Variables used by Scriptable. | |
| // These must be at the very top of the file. Do not edit. | |
| // icon-color: deep-blue; icon-glyph: film; | |
| // name: ard-mediathek.js | |
| // description: A scriptable widget which displays the latest editorial picks of the ARD Mediathek | |
| // author: Marco Dengel | |
| // email: marco79cgn@gmail.com | |
| let mediathekData; |