无服务器 自建短链服务 Url-Shorten-Worker worker.js配置项增加 password
配置项增加 password 不需要在KV中添加password条目 const config = { password: " testpwd ", // 管理面板使用密码 // if password != null, then use this config; otherwise, read password from KV. result_page: false, // 是否用特定的result页面来显示value // After get the value from KV, if use a page to show the result. theme: "", // 管理面板的主题 // Homepage theme, use the empty value for default theme. To use urlcool theme, please fill with "theme/urlcool" . cors: true, // 是否允许CORS使用API // Allow Cross-origin resource sharing for API requests. unique_link: false, // 一个长链是否只有唯一的短链(会增加写入的使用量) // If it is true, the same long url will be shorten into the same short url custom_link: true, // 允许自定义短链 // Allow users to customize the short url. overwrite_kv: false, // 允许覆盖已存在的key // Allow user to overwrite an existed key. snapchat_mode: false, // 短链只能访问一次(访问后就删除了) // The link will be distroyed after access. visit_count: false, // 使用记数(会大大增加写入的使用量, 多人共用不推荐打开) // Count visit times....