CF-Worker-Dir是一款适用于Cloudflare Worker平台上的云函数程序,可以使用它在一分钟内搭建属于自己的导航页面。CF-Worker-Dir提供丰富的自定义配置,同时它还可以预留了接口帮助你售出自己域名。如果你的域名还没有搭建网站,不如先利用CF-Worker-Dir让你的域名不再浪费。😉
🎉演示地址
- 在 Cloudflare Worker 管理页面创建一个新的 Worker 。
- 在Worker编辑页面左边粘贴
index.js
中的代码。 - 根据自身需要修改
config
的配置内容
CF-Worker-Dir允许用户自定义导航页面,配置内容如下:
自定义网站标题
自定义网站副标题
选择网站logo icon 暂时只支持semantic-ui icon
是否要开启网址售卖广告
广告信息
当前域名
价格
货币单位 semantic-ui icon
联系方式
通讯工具icon ("weixin","qq","telegram plane","envelope" or "phone")
号码/地址
网址信息
网址类别
网址类别icon 暂时只支持semantic-ui icon
网址数组
网站url
网站名称
网站描述
const config = {
title: "自定义导航", //write your website title
subtitle: "Cloudflare Workers Nav", //write your website subtitle
logo_icon: "sitemap", //select your logo by semantic-ui icon (you can get more msg in:https://semantic-ui.com/elements/icon.html)
selling_ads: true, //Selling your domain or not.(turning on may be helpful for selling this domain by showing some ads.)
sell_info:{
domain:"example.com",
price:500, //domain price
mon_unit:"yen sign", //monetary unit
contact:[ //how to contact you
{
type:"envelope", //contact type ("weixin","qq","telegram plane","envelope" or "phone")
content:"info@example.com"
}
]
},
lists: [ //Url list
{
name:"技术",
icon:"code",
list:[
{
url:"https://oschina.net/",
name:"开源**",
desc:"领先的中文开源技术社区"
}
]
}
]
}
MIT