mirror of
https://github.com/roacn/openwrt-packages.git
synced 2025-01-08 11:57:31 +08:00
🐤 Sync 2023-08-26 20:31
This commit is contained in:
parent
088a946627
commit
5acb348b1e
77
aliyundrive-fuse/Makefile
Normal file
77
aliyundrive-fuse/Makefile
Normal file
@ -0,0 +1,77 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=aliyundrive-fuse
|
||||
PKG_VERSION:=0.1.14
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_LICENSE:=MIT
|
||||
PKG_MAINTAINER:=messense <messense@icloud.com>
|
||||
|
||||
PKG_LIBC:=musl
|
||||
ifeq ($(ARCH),arm)
|
||||
PKG_LIBC:=musleabi
|
||||
|
||||
ARM_CPU_FEATURES:=$(word 2,$(subst +,$(space),$(call qstrip,$(CONFIG_CPU_TYPE))))
|
||||
ifneq ($(filter $(ARM_CPU_FEATURES),vfp vfpv2),)
|
||||
PKG_LIBC:=musleabihf
|
||||
endif
|
||||
endif
|
||||
|
||||
PKG_ARCH=$(ARCH)
|
||||
ifeq ($(ARCH),i386)
|
||||
PKG_ARCH:=i686
|
||||
endif
|
||||
|
||||
PKG_SOURCE:=aliyundrive-fuse-v$(PKG_VERSION).$(PKG_ARCH)-unknown-linux-$(PKG_LIBC).tar.gz
|
||||
PKG_SOURCE_URL:=https://github.com/messense/aliyundrive-fuse/releases/download/v$(PKG_VERSION)/
|
||||
PKG_HASH:=skip
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/aliyundrive-fuse
|
||||
SECTION:=multimedia
|
||||
CATEGORY:=Multimedia
|
||||
DEPENDS:=+fuse-utils
|
||||
TITLE:=FUSE for AliyunDrive
|
||||
URL:=https://github.com/messense/aliyundrive-fuse
|
||||
endef
|
||||
|
||||
define Package/aliyundrive-fuse/description
|
||||
FUSE for AliyunDrive.
|
||||
endef
|
||||
|
||||
define Package/aliyundrive-fuse/conffiles
|
||||
/etc/config/aliyundrive-fuse
|
||||
endef
|
||||
|
||||
define Download/sha256sum
|
||||
FILE:=$(PKG_SOURCE).sha256
|
||||
URL_FILE:=$(FILE)
|
||||
URL:=$(PKG_SOURCE_URL)
|
||||
HASH:=skip
|
||||
endef
|
||||
$(eval $(call Download,sha256sum))
|
||||
|
||||
define Build/Prepare
|
||||
mv $(DL_DIR)/$(PKG_SOURCE).sha256 .
|
||||
cp $(DL_DIR)/$(PKG_SOURCE) .
|
||||
shasum -a 256 -c $(PKG_SOURCE).sha256
|
||||
rm $(PKG_SOURCE).sha256 $(PKG_SOURCE)
|
||||
|
||||
tar -C $(PKG_BUILD_DIR)/ -zxf $(DL_DIR)/$(PKG_SOURCE)
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
echo "aliyundrive-fuse using precompiled binary."
|
||||
endef
|
||||
|
||||
define Package/aliyundrive-fuse/install
|
||||
$(INSTALL_DIR) $(1)/usr/bin
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/aliyundrive-fuse $(1)/usr/bin/aliyundrive-fuse
|
||||
$(INSTALL_DIR) $(1)/etc/init.d
|
||||
$(INSTALL_BIN) ./files/aliyundrive-fuse.init $(1)/etc/init.d/aliyundrive-fuse
|
||||
$(INSTALL_DIR) $(1)/etc/config
|
||||
$(INSTALL_CONF) ./files/aliyundrive-fuse.config $(1)/etc/config/aliyundrive-fuse
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,aliyundrive-fuse))
|
7
aliyundrive-fuse/files/aliyundrive-fuse.config
Normal file
7
aliyundrive-fuse/files/aliyundrive-fuse.config
Normal file
@ -0,0 +1,7 @@
|
||||
config default
|
||||
option enable '0'
|
||||
option debug '0'
|
||||
option refresh_token ''
|
||||
option mount_point '/mnt/aliyundrive'
|
||||
option read_buffer_size '10485760'
|
||||
option allow_other '1'
|
48
aliyundrive-fuse/files/aliyundrive-fuse.init
Executable file
48
aliyundrive-fuse/files/aliyundrive-fuse.init
Executable file
@ -0,0 +1,48 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
|
||||
USE_PROCD=1
|
||||
|
||||
START=99
|
||||
STOP=15
|
||||
|
||||
NAME=aliyundrive-fuse
|
||||
|
||||
uci_get_by_type() {
|
||||
local ret=$(uci get $NAME.@$1[0].$2 2>/dev/null)
|
||||
echo ${ret:=$3}
|
||||
}
|
||||
|
||||
start_service() {
|
||||
local enable=$(uci_get_by_type default enable)
|
||||
case "$enable" in
|
||||
1|on|true|yes|enabled)
|
||||
local refresh_token=$(uci_get_by_type default refresh_token)
|
||||
local mount_point=$(uci_get_by_type default mount_point)
|
||||
local read_buf_size=$(uci_get_by_type default read_buffer_size 10485760)
|
||||
local allow_other=$(uci_get_by_type default allow_other 0)
|
||||
|
||||
local extra_options=""
|
||||
|
||||
if [ "$allow_other" = "1" ]; then
|
||||
extra_options="$extra_options --allow-other"
|
||||
fi
|
||||
|
||||
mkdir -p "$mount_point"
|
||||
procd_open_instance
|
||||
procd_set_param command /bin/sh -c "/usr/bin/$NAME $extra_options -S $read_buf_size --workdir /var/run/$NAME $mount_point >>/var/log/$NAME.log 2>&1"
|
||||
procd_set_param pidfile /var/run/$NAME.pid
|
||||
procd_set_param env REFRESH_TOKEN="$refresh_token"
|
||||
case $(uci_get_by_type default debug) in
|
||||
1|on|true|yes|enabled)
|
||||
procd_append_param env RUST_LOG="aliyundrive_fuse=debug" ;;
|
||||
*) ;;
|
||||
esac
|
||||
procd_close_instance ;;
|
||||
*)
|
||||
stop_service ;;
|
||||
esac
|
||||
}
|
||||
|
||||
service_triggers() {
|
||||
procd_add_reload_trigger "aliyundrive-fuse"
|
||||
}
|
17
luci-app-aliyundrive-fuse/Makefile
Normal file
17
luci-app-aliyundrive-fuse/Makefile
Normal file
@ -0,0 +1,17 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=luci-app-aliyundrive-fuse
|
||||
PKG_VERSION:=0.1.14
|
||||
PKG_RELEASE:=1
|
||||
PKG_PO_VERSION:=$(PKG_VERSION)-$(PKG_RELEASE)
|
||||
|
||||
PKG_LICENSE:=MIT
|
||||
PKG_MAINTAINER:=messense <messense@icloud.com>
|
||||
|
||||
LUCI_TITLE:=LuCI Support for aliyundrive-fuse
|
||||
LUCI_PKGARCH:=all
|
||||
LUCI_DEPENDS:=+aliyundrive-fuse
|
||||
|
||||
include $(TOPDIR)/feeds/luci/luci.mk
|
||||
|
||||
# call BuildPackage - OpenWrt buildroot signature
|
@ -0,0 +1,40 @@
|
||||
module("luci.controller.aliyundrive-fuse", package.seeall)
|
||||
|
||||
function index()
|
||||
if not nixio.fs.access("/etc/config/aliyundrive-fuse") then
|
||||
return
|
||||
end
|
||||
|
||||
local page
|
||||
page = entry({"admin", "services", "aliyundrive-fuse"}, alias("admin", "services", "aliyundrive-fuse", "client"), _("AliyunDrive FUSE"), 10) -- 首页
|
||||
page.dependent = true
|
||||
page.acl_depends = { "luci-app-aliyundrive-fuse" }
|
||||
|
||||
entry({"admin", "services", "aliyundrive-fuse", "client"}, cbi("aliyundrive-fuse/client"), _("Settings"), 10).leaf = true -- 客户端配置
|
||||
entry({"admin", "services", "aliyundrive-fuse", "log"}, form("aliyundrive-fuse/log"), _("Log"), 30).leaf = true -- 日志页面
|
||||
|
||||
entry({"admin", "services", "aliyundrive-fuse", "status"}, call("action_status")).leaf = true
|
||||
entry({"admin", "services", "aliyundrive-fuse", "logtail"}, call("action_logtail")).leaf = true
|
||||
end
|
||||
|
||||
function action_status()
|
||||
local e = {}
|
||||
e.running = luci.sys.call("pidof aliyundrive-fuse >/dev/null") == 0
|
||||
e.application = luci.sys.exec("aliyundrive-fuse --version")
|
||||
luci.http.prepare_content("application/json")
|
||||
luci.http.write_json(e)
|
||||
end
|
||||
|
||||
function action_logtail()
|
||||
local fs = require "nixio.fs"
|
||||
local log_path = "/var/log/aliyundrive-fuse.log"
|
||||
local e = {}
|
||||
e.running = luci.sys.call("pidof aliyundrive-fuse >/dev/null") == 0
|
||||
if fs.access(log_path) then
|
||||
e.log = luci.sys.exec("tail -n 100 %s | sed 's/\\x1b\\[[0-9;]*m//g'" % log_path)
|
||||
else
|
||||
e.log = ""
|
||||
end
|
||||
luci.http.prepare_content("application/json")
|
||||
luci.http.write_json(e)
|
||||
end
|
@ -0,0 +1,30 @@
|
||||
m = Map("aliyundrive-fuse")
|
||||
m.title = translate("AliyunDrive FUSE")
|
||||
m.description = translate("<a href=\"https://github.com/messense/aliyundrive-fuse\" target=\"_blank\">Project GitHub URL</a>")
|
||||
|
||||
m:section(SimpleSection).template = "aliyundrive-fuse/aliyundrive-fuse_status"
|
||||
|
||||
e = m:section(TypedSection, "default")
|
||||
e.anonymous = true
|
||||
|
||||
enable = e:option(Flag, "enable", translate("Enable"))
|
||||
enable.rmempty = false
|
||||
|
||||
refresh_token = e:option(Value, "refresh_token", translate("Refresh Token"))
|
||||
refresh_token.description = translate("<a href=\"https://github.com/messense/aliyundrive-webdav#%E8%8E%B7%E5%8F%96-refresh_token\" target=\"_blank\">How to get refresh token</a>")
|
||||
|
||||
mount_point = e:option(Value, "mount_point", translate("Mount Point"))
|
||||
mount_point.default = "/mnt/aliyundrive"
|
||||
|
||||
read_buffer_size = e:option(Value, "read_buffer_size", translate("Read Buffer Size"))
|
||||
read_buffer_size.default = "10485760"
|
||||
read_buffer_size.datatype = "uinteger"
|
||||
|
||||
allow_other = e:option(Flag, "allow_other", translate("Allow Other users Access"))
|
||||
allow_other.description = translate("Allow other users to access the drive, enable this if you share with samba")
|
||||
allow_other.rmempty = false
|
||||
|
||||
debug = e:option(Flag, "debug", translate("Debug Mode"))
|
||||
debug.rmempty = false
|
||||
|
||||
return m
|
@ -0,0 +1,9 @@
|
||||
log = SimpleForm("logview")
|
||||
log.submit = false
|
||||
log.reset = false
|
||||
|
||||
t = log:field(DummyValue, '', '')
|
||||
t.rawhtml = true
|
||||
t.template = 'aliyundrive-fuse/aliyundrive-fuse_log'
|
||||
|
||||
return log
|
@ -0,0 +1,15 @@
|
||||
<%+cbi/valueheader%>
|
||||
<textarea id="logview" class="cbi-input-textarea" style="width: 100%" rows="30" readonly="readonly"></textarea>
|
||||
|
||||
<script type="text/javascript">
|
||||
const LOG_URL = '<%=luci.dispatcher.build_url("admin", "services", "aliyundrive-fuse", "logtail")%>';
|
||||
XHR.poll(1, LOG_URL, null, (x, d) => {
|
||||
let logview = document.getElementById("logview");
|
||||
if (!d.running) {
|
||||
XHR.halt();
|
||||
}
|
||||
logview.value = d.log;
|
||||
logview.scrollTop = logview.scrollHeight;
|
||||
});
|
||||
</script>
|
||||
<%+cbi/valuefooter%>
|
@ -0,0 +1,21 @@
|
||||
<script type="text/javascript">//<![CDATA[
|
||||
XHR.poll(3, '<%=url([[admin]], [[services]], [[aliyundrive-fuse]], [[status]])%>', null,
|
||||
function(x, data) {
|
||||
var tb = document.getElementById('aliyundrive-fuse_status');
|
||||
if (data && tb) {
|
||||
if (data.running) {
|
||||
tb.innerHTML = '<em><b style=color:green>' + data.application + '<%:RUNNING%></b></em>';
|
||||
} else {
|
||||
tb.innerHTML = '<em><b style=color:red>' + data.application + '<%:NOT RUNNING%></b></em>';
|
||||
}
|
||||
}
|
||||
}
|
||||
);
|
||||
//]]>
|
||||
</script>
|
||||
<style>.mar-10 {margin-left: 50px; margin-right: 10px;}</style>
|
||||
<fieldset class="cbi-section">
|
||||
<p id="aliyundrive-fuse_status">
|
||||
<em><%:Collecting data...%></em>
|
||||
</p>
|
||||
</fieldset>
|
50
luci-app-aliyundrive-fuse/po/zh-cn/aliyundrive-fuse.po
Normal file
50
luci-app-aliyundrive-fuse/po/zh-cn/aliyundrive-fuse.po
Normal file
@ -0,0 +1,50 @@
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
||||
msgid "AliyunDrive"
|
||||
msgstr "阿里云盘"
|
||||
|
||||
msgid "AliyunDrive FUSE"
|
||||
msgstr "阿里云盘 FUSE"
|
||||
|
||||
msgid "Enable"
|
||||
msgstr "启用"
|
||||
|
||||
msgid "Refresh Token"
|
||||
msgstr "Refresh Token"
|
||||
|
||||
msgid "Mount Point"
|
||||
msgstr "挂载点"
|
||||
|
||||
msgid "Read Buffer Size"
|
||||
msgstr "下载缓冲大小(bytes)"
|
||||
|
||||
msgid "Collecting data..."
|
||||
msgstr "获取数据中..."
|
||||
|
||||
msgid "RUNNING"
|
||||
msgstr "运行中"
|
||||
|
||||
msgid "NOT RUNNING"
|
||||
msgstr "未运行"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "设置"
|
||||
|
||||
msgid "Log"
|
||||
msgstr "日志"
|
||||
|
||||
msgid "Debug Mode"
|
||||
msgstr "调试模式"
|
||||
|
||||
msgid "<a href=\"https://github.com/messense/aliyundrive-fuse\" target=\"_blank\">Project GitHub URL</a>"
|
||||
msgstr "<a href=\"https://github.com/messense/aliyundrive-fuse\" target=\"_blank\">GitHub 项目地址</a>"
|
||||
|
||||
msgid "<a href=\"https://github.com/messense/aliyundrive-webdav#%E8%8E%B7%E5%8F%96-refresh_token\" target=\"_blank\">How to get refresh token</a>"
|
||||
msgstr "<a href=\"https://github.com/messense/aliyundrive-webdav#%E8%8E%B7%E5%8F%96-refresh_token\" target=\"_blank\">查看获取 refresh token 的方法</a>"
|
||||
|
||||
msgid "Allow Other users Access"
|
||||
msgstr "允许其他用户访问"
|
||||
|
||||
msgid "Allow other users to access the drive, enable this if you share with samba"
|
||||
msgstr "允许其他用户访问此驱动,如果你想用Samba分享请开启此开关"
|
1
luci-app-aliyundrive-fuse/po/zh_Hans
Symbolic link
1
luci-app-aliyundrive-fuse/po/zh_Hans
Symbolic link
@ -0,0 +1 @@
|
||||
zh-cn
|
11
luci-app-aliyundrive-fuse/root/etc/uci-defaults/luci-aliyundrive-fuse
Executable file
11
luci-app-aliyundrive-fuse/root/etc/uci-defaults/luci-aliyundrive-fuse
Executable file
@ -0,0 +1,11 @@
|
||||
#!/bin/sh
|
||||
|
||||
uci -q batch <<-EOF >/dev/null
|
||||
delete ucitrack.@aliyundrive-fuse[-1]
|
||||
add ucitrack aliyundrive-fuse
|
||||
set ucitrack.@aliyundrive-fuse[-1].init=aliyundrive-fuse
|
||||
commit ucitrack
|
||||
EOF
|
||||
|
||||
rm -f /tmp/luci-indexcache
|
||||
exit 0
|
@ -0,0 +1,11 @@
|
||||
{
|
||||
"luci-app-aliyundrive-fuse": {
|
||||
"description": "Grant UCI access for luci-app-aliyundrive-fuse",
|
||||
"read": {
|
||||
"uci": [ "aliyundrive-fuse" ]
|
||||
},
|
||||
"write": {
|
||||
"uci": [ "aliyundrive-fuse" ]
|
||||
}
|
||||
}
|
||||
}
|
11
luci-app-argon-config/.github/workflows/build.sh
vendored
Executable file
11
luci-app-argon-config/.github/workflows/build.sh
vendored
Executable file
@ -0,0 +1,11 @@
|
||||
#!/bin/sh
|
||||
|
||||
sed -i 's/git\.openwrt\.org\/project\/luci/github\.com\/openwrt\/luci/g' ./feeds.conf.default
|
||||
./scripts/feeds update luci
|
||||
./scripts/feeds install luci
|
||||
mv ./bin/luci-app-argon-config ./package/
|
||||
make defconfig
|
||||
make package/luci-app-argon-config/compile V=s -j$(nproc) BUILD_LOG=1
|
||||
|
||||
tar -cJf logs.tar.xz logs
|
||||
mv logs.tar.xz bin
|
41
luci-app-argon-config/.github/workflows/check.yml
vendored
Normal file
41
luci-app-argon-config/.github/workflows/check.yml
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
tags-ignore:
|
||||
- 'release-*'
|
||||
paths:
|
||||
- 'luci-app-argon-config/**'
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build the IPK
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@master
|
||||
- name: Prepare
|
||||
run: |
|
||||
mkdir -p bin/luci-app-argon-config
|
||||
cp -rf ./luasrc ./po ./root ./Makefile ./bin/luci-app-argon-config
|
||||
- name: Docker Build
|
||||
run: |
|
||||
docker pull openwrt/sdk
|
||||
docker run --rm -u root -v "$(pwd)"/bin/:/home/build/openwrt/bin -v ${{ github.workspace }}/.github/workflows:/home/build/workflows openwrt/sdk /bin/sh /home/build/workflows/build.sh
|
||||
- name: Upload app
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: luci-app-argon-config
|
||||
path: ./bin/packages/x86_64/base/*argon-config*
|
||||
if-no-files-found: error
|
||||
- name: Upload Log
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: buildlog
|
||||
path: bin/logs.tar.xz
|
39
luci-app-argon-config/.github/workflows/release.yml
vendored
Normal file
39
luci-app-argon-config/.github/workflows/release.yml
vendored
Normal file
@ -0,0 +1,39 @@
|
||||
name: Release
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'release-*'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build the IPK
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@master
|
||||
- name: Prepare
|
||||
run: |
|
||||
mkdir -p bin/luci-app-argon-config
|
||||
cp -rf ./luasrc ./po ./root ./Makefile ./bin/luci-app-argon-config
|
||||
- name: Docker Build
|
||||
run: |
|
||||
docker pull openwrt/sdk
|
||||
docker run --rm -u root -v "$(pwd)"/bin/:/home/build/openwrt/bin -v ${{ github.workspace }}/.github/workflows:/home/build/workflows openwrt/sdk /bin/sh /home/build/workflows/build.sh
|
||||
- name: Release
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: |
|
||||
set -x
|
||||
assets=()
|
||||
for asset in ./bin/packages/x86_64/base/*argon-config*.ipk; do
|
||||
assets+=("-a" "$asset")
|
||||
done
|
||||
tag_name=$(basename ${{github.ref}})
|
||||
hub release create -p "${assets[@]}" -m "$tag_name" "$tag_name"
|
||||
- name: Upload Log
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: buildlog
|
||||
path: bin/logs.tar.xz
|
201
luci-app-argon-config/LICENSE
Normal file
201
luci-app-argon-config/LICENSE
Normal file
@ -0,0 +1,201 @@
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright [yyyy] [name of copyright owner]
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
19
luci-app-argon-config/Makefile
Normal file
19
luci-app-argon-config/Makefile
Normal file
@ -0,0 +1,19 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=luci-app-argon-config
|
||||
PKG_VERSION:=1.0
|
||||
PKG_RELEASE:=20230608
|
||||
|
||||
PKG_MAINTAINER:=jerrykuku <jerrykuku@qq.com>
|
||||
|
||||
LUCI_TITLE:=LuCI app for Argon theme configuration
|
||||
LUCI_PKGARCH:=all
|
||||
LUCI_DEPENDS:=+luci-theme-argon
|
||||
|
||||
define Package/$(PKG_NAME)/conffiles
|
||||
/etc/config/argon
|
||||
endef
|
||||
|
||||
include $(TOPDIR)/feeds/luci/luci.mk
|
||||
|
||||
# call BuildPackage - OpenWrt buildroot signature
|
98
luci-app-argon-config/README.md
Normal file
98
luci-app-argon-config/README.md
Normal file
@ -0,0 +1,98 @@
|
||||
<!-- markdownlint-configure-file {
|
||||
"MD013": {
|
||||
"code_blocks": false,
|
||||
"tables": false,
|
||||
"line_length":200
|
||||
},
|
||||
"MD033": false,
|
||||
"MD041": false
|
||||
} -->
|
||||
|
||||
[license]: /LICENSE
|
||||
[license-badge]: https://img.shields.io/github/license/jerrykuku/luci-app-argon-config?style=flat-square&a=1
|
||||
[prs]: https://github.com/jerrykuku/luci-app-argon-config/pulls
|
||||
[prs-badge]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square
|
||||
[issues]: https://github.com/jerrykuku/luci-app-argon-config/issues/new
|
||||
[issues-badge]: https://img.shields.io/badge/Issues-welcome-brightgreen.svg?style=flat-square
|
||||
[release]: https://github.com/jerrykuku/luci-app-argon-config/releases
|
||||
[release-badge]: https://img.shields.io/github/v/release/jerrykuku/luci-app-argon-config?include_prereleases&style=flat-square
|
||||
[download]: https://github.com/jerrykuku/luci-app-argon-config/releases
|
||||
[download-badge]: https://img.shields.io/github/downloads/jerrykuku/luci-app-argon-config/total?style=flat-square
|
||||
[contact]: https://t.me/jerryk6
|
||||
[contact-badge]: https://img.shields.io/badge/Contact-telegram-blue?style=flat-square
|
||||
[en-us-link]: /README.md
|
||||
[zh-cn-link]: /README_ZH.md
|
||||
[en-us-release-log]: /RELEASE.md
|
||||
[zh-cn-release-log]: /RELEASE_ZH.md
|
||||
[config-link]: https://github.com/jerrykuku/luci-app-argon-config/releases
|
||||
[lede]: https://github.com/coolsnowwolf/lede
|
||||
[official]: https://github.com/openwrt/openwrt
|
||||
[immortalwrt]: https://github.com/immortalwrt/immortalwrt
|
||||
|
||||
<div align="center">
|
||||
<img src="https://raw.githubusercontent.com/jerrykuku/staff/master/argon_title4.svg">
|
||||
|
||||
# Argon Theme Config Plugin
|
||||
|
||||
You can set the blur and transparency of the login page of argon theme,
|
||||
|
||||
and manage the background pictures and videos.
|
||||
|
||||
[![license][license-badge]][license]
|
||||
[![prs][prs-badge]][prs]
|
||||
[![issues][issues-badge]][issues]
|
||||
[![release][release-badge]][release]
|
||||
[![download][download-badge]][download]
|
||||
[![contact][contact-badge]][contact]
|
||||
|
||||
**English** |
|
||||
[简体中文][zh-cn-link]
|
||||
|
||||
<img src="https://raw.githubusercontent.com/jerrykuku/staff/master/argon2.gif">
|
||||
</div>
|
||||
|
||||
## Branch Introduction
|
||||
|
||||
There are currently two main branches that are adapted to different versions of the **OpenWrt** source code.
|
||||
The table below will provide a detailed introduction:
|
||||
|
||||
| Branch | Version | Description | Matching source |
|
||||
| ------ | ------- | ---------------------------------- | --------------------------------------------------------- |
|
||||
| master | v1.x.x | Support the latest version of LuCI | [Official OpenWrt][official] • [ImmortalWrt][immortalwrt] |
|
||||
| 18.06 | v0.9.x | Support the 18.06 version of LuCI | [Lean's LEDE][lede] |
|
||||
|
||||
## Getting started
|
||||
|
||||
### Build for Lean's LEDE project
|
||||
|
||||
```bash
|
||||
cd lede/package/lean
|
||||
rm -rf luci-app-argon-config # if have
|
||||
git clone -b 18.06 https://github.com/jerrykuku/luci-app-argon-config.git luci-app-argon-config
|
||||
make menuconfig #choose LUCI->Application->Luci-app-argon-config
|
||||
make -j1 V=s
|
||||
```
|
||||
|
||||
### Build for OpenWrt official SnapShots and ImmortalWrt
|
||||
|
||||
```bash
|
||||
cd openwrt/package
|
||||
git clone https://github.com/jerrykuku/luci-app-argon-config.git
|
||||
make menuconfig #choose LUCI->Application->Luci-app-argon-config
|
||||
make -j1 V=s
|
||||
```
|
||||
|
||||
## Contributors
|
||||
|
||||
<a href="https://github.com/jerrykuku/luci-app-argon-config/graphs/contributors">
|
||||
<img src="https://contrib.rocks/image?repo=jerrykuku/luci-app-argon-config" />
|
||||
</a>
|
||||
|
||||
Made with [contrib.rocks](https://contrib.rocks).
|
||||
|
||||
## Related Projects
|
||||
|
||||
- [luci-theme-argon](https://github.com/jerrykuku/luci-theme-argon): Argon theme
|
||||
- [luci-app-vssr](https://github.com/jerrykuku/luci-app-vssr): An OpenWrt internet surfing plugin
|
||||
- [openwrt-package](https://github.com/jerrykuku/openwrt-package): My OpenWrt package
|
||||
- [CasaOS](https://github.com/IceWhaleTech/CasaOS): A simple, easy-to-use, elegant open-source Personal Cloud system (My current main project)
|
97
luci-app-argon-config/README_ZH.md
Normal file
97
luci-app-argon-config/README_ZH.md
Normal file
@ -0,0 +1,97 @@
|
||||
<!-- markdownlint-configure-file {
|
||||
"MD013": {
|
||||
"code_blocks": false,
|
||||
"tables": false,
|
||||
"line_length":200
|
||||
},
|
||||
"MD033": false,
|
||||
"MD041": false
|
||||
} -->
|
||||
|
||||
[license]: /LICENSE
|
||||
[license-badge]: https://img.shields.io/github/license/jerrykuku/luci-app-argon-config?style=flat-square&a=1
|
||||
[prs]: https://github.com/jerrykuku/luci-app-argon-config/pulls
|
||||
[prs-badge]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square
|
||||
[issues]: https://github.com/jerrykuku/luci-app-argon-config/issues/new
|
||||
[issues-badge]: https://img.shields.io/badge/Issues-welcome-brightgreen.svg?style=flat-square
|
||||
[release]: https://github.com/jerrykuku/luci-app-argon-config/releases
|
||||
[release-badge]: https://img.shields.io/github/v/release/jerrykuku/luci-app-argon-config?include_prereleases&style=flat-square
|
||||
[download]: https://github.com/jerrykuku/luci-app-argon-config/releases
|
||||
[download-badge]: https://img.shields.io/github/downloads/jerrykuku/luci-app-argon-config/total?style=flat-square
|
||||
[contact]: https://t.me/jerryk6
|
||||
[contact-badge]: https://img.shields.io/badge/Contact-telegram-blue?style=flat-square
|
||||
[en-us-link]: /README.md
|
||||
[zh-cn-link]: /README_ZH.md
|
||||
[en-us-release-log]: /RELEASE.md
|
||||
[zh-cn-release-log]: /RELEASE_ZH.md
|
||||
[config-link]: https://github.com/jerrykuku/luci-app-argon-config/releases
|
||||
[lede]: https://github.com/coolsnowwolf/lede
|
||||
[official]: https://github.com/openwrt/openwrt
|
||||
[immortalwrt]: https://github.com/immortalwrt/immortalwrt
|
||||
|
||||
<div align="center">
|
||||
<img src="https://raw.githubusercontent.com/jerrykuku/staff/master/argon_title4.svg">
|
||||
|
||||
# Argon 主题设置插件
|
||||
|
||||
您可以设置 Argon 主题登录页面的模糊度和透明度,并管理背景图片和视频。
|
||||
|
||||
[![license][license-badge]][license]
|
||||
[![prs][prs-badge]][prs]
|
||||
[![issues][issues-badge]][issues]
|
||||
[![release][release-badge]][release]
|
||||
[![download][download-badge]][download]
|
||||
[![contact][contact-badge]][contact]
|
||||
|
||||
[Engilish][en-us-link] |
|
||||
**简体中文**
|
||||
|
||||
<img src="https://raw.githubusercontent.com/jerrykuku/staff/master/argon2.gif">
|
||||
</div>
|
||||
|
||||
## Branch Introduction
|
||||
|
||||
目前有两个主要的分支,适应于不同版本的**OpenWrt**源代码。
|
||||
下表为详细的介绍:
|
||||
|
||||
|
||||
| 分支 | 版本 | 介绍 | 匹配源码 |
|
||||
| ------ | ------ | --------------------------- | ----------------------------------------------------- |
|
||||
| master | v1.x.x | 支持最新和比较新版本的 LuCI | [官方 OpenWrt][official] • [ImmortalWrt][immortalwrt] |
|
||||
| 18.06 | v0.9.x | 支持 18.06 版本的 LuCI | [Lean's LEDE][lede] |
|
||||
|
||||
## G快速开始
|
||||
|
||||
### 使用 Lean's LEDE 构建
|
||||
|
||||
```bash
|
||||
cd lede/package/lean
|
||||
rm -rf luci-app-argon-config # if have
|
||||
git clone -b 18.06 https://github.com/jerrykuku/luci-app-argon-config.git luci-app-argon-config
|
||||
make menuconfig #choose LUCI->Application->Luci-app-argon-config
|
||||
make -j1 V=s
|
||||
```
|
||||
|
||||
### 使用官方 OpenWrt SnapShots 和 ImmortalWrt 构建
|
||||
|
||||
```bash
|
||||
cd openwrt/package
|
||||
git clone https://github.com/jerrykuku/luci-app-argon-config.git
|
||||
make menuconfig #choose LUCI->Application->Luci-app-argon-config
|
||||
make -j1 V=s
|
||||
```
|
||||
|
||||
## 贡献者
|
||||
|
||||
<a href="https://github.com/jerrykuku/luci-app-argon-config/graphs/contributors">
|
||||
<img src="https://contrib.rocks/image?repo=jerrykuku/luci-app-argon-config" />
|
||||
</a>
|
||||
|
||||
Made with [contrib.rocks](https://contrib.rocks).
|
||||
|
||||
## 相关项目
|
||||
|
||||
- [luci-theme-argon](https://github.com/jerrykuku/luci-theme-argon): Argon theme
|
||||
- [luci-app-vssr](https://github.com/jerrykuku/luci-app-vssr): An OpenWrt internet surfing plugin
|
||||
- [openwrt-package](https://github.com/jerrykuku/openwrt-package): My OpenWrt package
|
||||
- [CasaOS](https://github.com/IceWhaleTech/CasaOS): A simple, easy-to-use, elegant open-source Personal Cloud system (My current main project)
|
@ -0,0 +1,186 @@
|
||||
'use strict';
|
||||
'require form';
|
||||
'require fs';
|
||||
'require rpc';
|
||||
'require uci';
|
||||
'require ui';
|
||||
'require view';
|
||||
|
||||
var callAvailSpace = rpc.declare({
|
||||
object: 'luci.argon',
|
||||
method: 'avail'
|
||||
});
|
||||
|
||||
var callRemoveArgon = rpc.declare({
|
||||
object: 'luci.argon',
|
||||
method: 'remove',
|
||||
params: ['filename'],
|
||||
expect: { '': {} }
|
||||
});
|
||||
|
||||
var callRenameArgon = rpc.declare({
|
||||
object: 'luci.argon',
|
||||
method: 'rename',
|
||||
params: ['newname'],
|
||||
expect: { '': {} }
|
||||
});
|
||||
|
||||
var bg_path = '/www/luci-static/argon/background/';
|
||||
|
||||
var trans_set = [0, 0.1, 0.2, 0.3, 0.4,
|
||||
0.5, 0.6, 0.7, 0.8, 0.9, 1 ];
|
||||
|
||||
return view.extend({
|
||||
load: function() {
|
||||
return Promise.all([
|
||||
uci.load('argon'),
|
||||
L.resolveDefault(callAvailSpace(), {}),
|
||||
L.resolveDefault(fs.list(bg_path), {})
|
||||
]);
|
||||
},
|
||||
|
||||
render: function(data) {
|
||||
var m, s, o;
|
||||
|
||||
m = new form.Map('argon', _('Argon theme configuration'),
|
||||
_('Here you can set the blur and transparency of the login page of argon theme, and manage the background pictures and videos. Chrome is recommended.'));
|
||||
|
||||
s = m.section(form.TypedSection, 'global', _('Theme configuration'));
|
||||
s.addremove = false;
|
||||
s.anonymous = true;
|
||||
|
||||
o = s.option(form.ListValue, 'online_wallpaper', _('Wallpaper source'));
|
||||
o.value('none', _('Built-in'));
|
||||
o.value('bing', _('Bing'));
|
||||
o.value('unsplash', _('Unsplash'));
|
||||
o.value('wallhaven', _('Wallhaven'));
|
||||
o.default = 'bing';
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.option(form.ListValue, 'mode', _('Theme mode'));
|
||||
o.value('normal', _('Follow system'));
|
||||
o.value('light', _('Light mode'));
|
||||
o.value('dark', _('Dark mode'));
|
||||
o.default = 'normal';
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.option(form.Value, 'primary', _('[Light mode] Primary Color'), _('A HEX color (default: #5e72e4).'))
|
||||
o.default = '#5e72e4';
|
||||
o.rmempty = false;
|
||||
o.validate = function(section_id, value) {
|
||||
if (section_id)
|
||||
return /(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(value) ||
|
||||
_('Expecting: %s').format(_('valid HEX color value'));
|
||||
return true;
|
||||
}
|
||||
|
||||
o = s.option(form.ListValue, 'transparency', _('[Light mode] Transparency'),
|
||||
_('0 transparent - 1 opaque (suggest: transparent: 0 or translucent preset: 0.5).'));
|
||||
for (var i of trans_set)
|
||||
o.value(i);
|
||||
o.default = '0.5';
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.option(form.Value, 'blur', _('[Light mode] Frosted Glass Radius'),
|
||||
_('Larger value will more blurred (suggest: clear: 1 or blur preset: 10).'));
|
||||
o.datatype = 'ufloat';
|
||||
o.default = '10';
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.option(form.Value, 'dark_primary', _('[Dark mode] Primary Color'),
|
||||
_('A HEX Color (default: #483d8b).'))
|
||||
o.default = '#483d8b';
|
||||
o.rmempty = false;
|
||||
o.validate = function(section_id, value) {
|
||||
if (section_id)
|
||||
return /(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(value) ||
|
||||
_('Expecting: %s').format(_('valid HEX color value'));
|
||||
return true;
|
||||
}
|
||||
|
||||
o = s.option(form.ListValue, 'transparency_dark', _('[Dark mode] Transparency'),
|
||||
_('0 transparent - 1 opaque (suggest: black translucent preset: 0.5).'));
|
||||
for (var i of trans_set)
|
||||
o.value(i);
|
||||
o.default = '0.5';
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.option(form.Value, 'blur_dark', _('[Dark mode] Frosted Glass Radius'),
|
||||
_('Larger value will more blurred (suggest: clear: 1 or blur preset: 10).'))
|
||||
o.datatype = 'ufloat';
|
||||
o.default = '10';
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.option(form.Button, '_save', _('Save settings'));
|
||||
o.inputstyle = 'apply';
|
||||
o.inputtitle = _('Save current settings');
|
||||
o.onclick = function() {
|
||||
ui.changes.apply(true);
|
||||
return this.map.save(null, true);
|
||||
}
|
||||
|
||||
s = m.section(form.TypedSection, null, _('Upload background (available space: %1024.2mB)')
|
||||
.format(data[1].avail * 1024),
|
||||
_('You can upload files such as gif/jpg/mp4/png/webm/webp files, to change the login page background.'));
|
||||
s.addremove = false;
|
||||
s.anonymous = true;
|
||||
|
||||
o = s.option(form.Button, '_upload_bg', _('Upload background'),
|
||||
_('Files will be uploaded to <code>%s</code>.').format(bg_path));
|
||||
o.inputstyle = 'action';
|
||||
o.inputtitle = _('Upload...');
|
||||
o.onclick = function(ev, section_id) {
|
||||
var file = '/tmp/argon_background.tmp';
|
||||
return ui.uploadFile(file, ev.target).then(function(res) {
|
||||
return L.resolveDefault(callRenameArgon(res.name), {}).then(function(ret) {
|
||||
if (ret.result === 0)
|
||||
return location.reload();
|
||||
else {
|
||||
ui.addNotification(null, E('p', _('Failed to upload file: %s.').format(res.name)));
|
||||
return L.resolveDefault(fs.remove(file), {});
|
||||
}
|
||||
});
|
||||
})
|
||||
.catch(function(e) { ui.addNotification(null, E('p', e.message)); });
|
||||
};
|
||||
o.modalonly = true;
|
||||
|
||||
s = m.section(form.TableSection);
|
||||
s.render = function() {
|
||||
var tbl = E('table', { 'class': 'table cbi-section-table' },
|
||||
E('tr', { 'class': 'tr table-titles' }, [
|
||||
E('th', { 'class': 'th' }, [ _('Filename') ]),
|
||||
E('th', { 'class': 'th' }, [ _('Modified date') ]),
|
||||
E('th', { 'class': 'th' }, [ _('Size') ]),
|
||||
E('th', { 'class': 'th' }, [ _('Action') ])
|
||||
])
|
||||
);
|
||||
|
||||
cbi_update_table(tbl, data[2].map(L.bind(function(file) {
|
||||
return [
|
||||
file.name,
|
||||
new Date(file.mtime * 1000).toLocaleString(),
|
||||
String.format('%1024.2mB', file.size),
|
||||
E('button', {
|
||||
'class': 'btn cbi-button cbi-button-remove',
|
||||
'click': ui.createHandlerFn(this, function() {
|
||||
return L.resolveDefault(callRemoveArgon(file.name), {})
|
||||
.then(function() { return location.reload(); });
|
||||
})
|
||||
}, [ _('Delete') ])
|
||||
];
|
||||
}, this)), E('em', _('No files found.')));
|
||||
|
||||
return E('div', { 'class': 'cbi-map', 'id': 'cbi-filelist' }, [
|
||||
E('h3', _('Background file list')),
|
||||
tbl
|
||||
]);
|
||||
};
|
||||
|
||||
return m.render();
|
||||
},
|
||||
|
||||
handleSaveApply: null,
|
||||
handleSave: null,
|
||||
handleReset: null
|
||||
});
|
285
luci-app-argon-config/po/es/argon-config.po
Normal file
285
luci-app-argon-config/po/es/argon-config.po
Normal file
@ -0,0 +1,285 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: 2021-03-15 21:25-0300\n"
|
||||
"PO-Revision-Date: 2022-04-23 15:21-0300\n"
|
||||
"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 3.0.1\n"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:102
|
||||
msgid "0 transparent - 1 opaque (suggest: black translucent preset: 0.5)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:78
|
||||
msgid ""
|
||||
"0 transparent - 1 opaque (suggest: transparent: 0 or translucent preset: "
|
||||
"0.5)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:91
|
||||
msgid "A HEX Color (default: #483d8b)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:67
|
||||
msgid "A HEX color (default: #5e72e4)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:155
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/root/usr/share/luci/menu.d/luci-app-argon-config.json:3
|
||||
msgid "Argon Config"
|
||||
msgstr "Configuración de Argon"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:45
|
||||
msgid "Argon theme configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:175
|
||||
msgid "Background file list"
|
||||
msgstr "Lista de archivos de fondo"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:54
|
||||
msgid "Bing"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:53
|
||||
msgid "Built-in"
|
||||
msgstr "Integrado"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:63
|
||||
msgid "Dark mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:170
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:73
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:97
|
||||
msgid "Expecting: %s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:139
|
||||
msgid "Failed to upload file: %s."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:152
|
||||
msgid "Filename"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:129
|
||||
msgid "Files will be uploaded to <code>%s</code>."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:61
|
||||
msgid "Follow system"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/root/usr/share/rpcd/acl.d/luci-app-argon-config.json:3
|
||||
msgid "Grant UCI access for luci-app-argon-config"
|
||||
msgstr "Otorgar acceso UCI para luci-app-argon-config"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:46
|
||||
msgid ""
|
||||
"Here you can set the blur and transparency of the login page of argon theme, "
|
||||
"and manage the background pictures and videos. Chrome is recommended."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:85
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:109
|
||||
msgid "Larger value will more blurred (suggest: clear: 1 or blur preset: 10)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:62
|
||||
msgid "Light mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:153
|
||||
msgid "Modified date"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:172
|
||||
msgid "No files found."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:116
|
||||
msgid "Save current settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:114
|
||||
msgid "Save settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:154
|
||||
msgid "Size"
|
||||
msgstr "Tamaño"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:48
|
||||
msgid "Theme configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:60
|
||||
msgid "Theme mode"
|
||||
msgstr "Modo del tema"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:55
|
||||
msgid "Unsplash"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:128
|
||||
msgid "Upload background"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:122
|
||||
msgid "Upload background (available space: %1024.2mB)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:131
|
||||
msgid "Upload..."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:56
|
||||
msgid "Wallhaven"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:52
|
||||
msgid "Wallpaper source"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:124
|
||||
msgid ""
|
||||
"You can upload files such as gif/jpg/mp4/png/webm/webp files, to change the "
|
||||
"login page background."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:108
|
||||
msgid "[Dark mode] Frosted Glass Radius"
|
||||
msgstr "[Modo oscuro] Radio de vidrio esmerilado"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:90
|
||||
msgid "[Dark mode] Primary Color"
|
||||
msgstr "[Modo oscuro] Color primario"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:101
|
||||
msgid "[Dark mode] Transparency"
|
||||
msgstr "[Modo oscuro] Transparencia"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:84
|
||||
msgid "[Light mode] Frosted Glass Radius"
|
||||
msgstr "[Modo claro] Radio de vidrio esmerilado"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:67
|
||||
msgid "[Light mode] Primary Color"
|
||||
msgstr "[Modo claro] Color primario"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:77
|
||||
msgid "[Light mode] Transparency"
|
||||
msgstr "[Modo claro] Transparencia"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:73
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:97
|
||||
msgid "valid HEX color value"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "0 transparent - 1 opaque ; ( Suggest: Black translucent preset: 0.5 )"
|
||||
#~ msgstr ""
|
||||
#~ "0 transparente - 1 opaco; (Sugerencia: negro translúcido preestablecido: "
|
||||
#~ "0.5)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "0 transparent - 1 opaque ; ( Suggest: transparent: 0 or translucent "
|
||||
#~ "preset: 0.5 )"
|
||||
#~ msgstr ""
|
||||
#~ "0 transparente - 1 opaco; (Sugerencia: transparente: 0 o translúcido "
|
||||
#~ "preestablecido: 0.5)"
|
||||
|
||||
#~ msgid "A HEX Color ; ( Default: #483d8b )"
|
||||
#~ msgstr "Un color HEX; (Predeterminado: #483d8b)"
|
||||
|
||||
#~ msgid "A HEX Color ; ( Default: #5e72e4 )"
|
||||
#~ msgstr "Un color HEX; (Predeterminado: #5e72e4)"
|
||||
|
||||
#~ msgid "Bing Wallpapers"
|
||||
#~ msgstr "Fondos de Bing"
|
||||
|
||||
#~ msgid "Choose local file:"
|
||||
#~ msgstr "Elija un archivo local:"
|
||||
|
||||
#~ msgid "Create upload file error."
|
||||
#~ msgstr "Crear archivo de error de carga."
|
||||
|
||||
#~ msgid "File name"
|
||||
#~ msgstr "Nombre del archivo"
|
||||
|
||||
#~ msgid "File saved to"
|
||||
#~ msgstr "Archivo guardado en"
|
||||
|
||||
#~ msgid "Follow System"
|
||||
#~ msgstr "Seguir el sistema"
|
||||
|
||||
#~ msgid "Force Dark"
|
||||
#~ msgstr "Forzar oscuro"
|
||||
|
||||
#~ msgid "Force Light"
|
||||
#~ msgstr "Forzar claro"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Here you can set the blur and transparency of the login page of argon "
|
||||
#~ "theme, and manage the background pictures and videos.[Chrome is "
|
||||
#~ "recommended]"
|
||||
#~ msgstr ""
|
||||
#~ "Aquí puede configurar el desenfoque y la transparencia de la página de "
|
||||
#~ "inicio de sesión del tema argon y administrar las imágenes de fondo y los "
|
||||
#~ "videos. [Se recomienda Chrome]"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Larger value will more blurred ; ( Suggest: clear: 1 or blur preset: 10 )"
|
||||
#~ msgstr ""
|
||||
#~ "El valor más grande se verá más borroso; (Sugerencia: claro: 1 o "
|
||||
#~ "desenfoque predeterminado: 10)"
|
||||
|
||||
#~ msgid "Modify time"
|
||||
#~ msgstr "Modificar la hora"
|
||||
|
||||
#~ msgid "No specify upload file."
|
||||
#~ msgstr "No especificar archivo de carga."
|
||||
|
||||
#~ msgid "Remove"
|
||||
#~ msgstr "Eliminar"
|
||||
|
||||
#~ msgid "Save Changes"
|
||||
#~ msgstr "Guardar cambios"
|
||||
|
||||
#~ msgid "Upload"
|
||||
#~ msgstr "Cargar"
|
||||
|
||||
#~ msgid "Upload (Free:"
|
||||
#~ msgstr "Cargar (Libre:"
|
||||
|
||||
#~ msgid "Upload file to '/www/luci-static/argon/background/'"
|
||||
#~ msgstr "Subir archivo a '/www/luci-static/argon/background/'"
|
||||
|
||||
#~ msgid "Wallpaper Source"
|
||||
#~ msgstr "Fuente del fondo de pantalla"
|
||||
|
||||
#~ msgid "You can choose Theme color mode here"
|
||||
#~ msgstr "Puede elegir el modo de color del tema aquí"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "You can upload files such as jpg,png,gif,webp,mp4,webm files, To change "
|
||||
#~ "the login page background."
|
||||
#~ msgstr ""
|
||||
#~ "Puede cargar archivos como jpg, png, gif, webp, mp4, webm, para cambiar "
|
||||
#~ "el fondo de la página de inicio de sesión."
|
||||
|
||||
#~ msgid "Luci Argon theme config"
|
||||
#~ msgstr "Configuración del tema Luci Argon"
|
179
luci-app-argon-config/po/templates/argon-config.pot
Normal file
179
luci-app-argon-config/po/templates/argon-config.pot
Normal file
@ -0,0 +1,179 @@
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=UTF-8"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:102
|
||||
msgid "0 transparent - 1 opaque (suggest: black translucent preset: 0.5)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:78
|
||||
msgid ""
|
||||
"0 transparent - 1 opaque (suggest: transparent: 0 or translucent preset: "
|
||||
"0.5)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:91
|
||||
msgid "A HEX Color (default: #483d8b)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:67
|
||||
msgid "A HEX color (default: #5e72e4)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:155
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/root/usr/share/luci/menu.d/luci-app-argon-config.json:3
|
||||
msgid "Argon Config"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:45
|
||||
msgid "Argon theme configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:175
|
||||
msgid "Background file list"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:54
|
||||
msgid "Bing"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:53
|
||||
msgid "Built-in"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:63
|
||||
msgid "Dark mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:170
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:73
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:97
|
||||
msgid "Expecting: %s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:139
|
||||
msgid "Failed to upload file: %s."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:152
|
||||
msgid "Filename"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:129
|
||||
msgid "Files will be uploaded to <code>%s</code>."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:61
|
||||
msgid "Follow system"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/root/usr/share/rpcd/acl.d/luci-app-argon-config.json:3
|
||||
msgid "Grant UCI access for luci-app-argon-config"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:46
|
||||
msgid ""
|
||||
"Here you can set the blur and transparency of the login page of argon theme, "
|
||||
"and manage the background pictures and videos. Chrome is recommended."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:85
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:109
|
||||
msgid "Larger value will more blurred (suggest: clear: 1 or blur preset: 10)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:62
|
||||
msgid "Light mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:153
|
||||
msgid "Modified date"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:172
|
||||
msgid "No files found."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:116
|
||||
msgid "Save current settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:114
|
||||
msgid "Save settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:154
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:48
|
||||
msgid "Theme configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:60
|
||||
msgid "Theme mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:55
|
||||
msgid "Unsplash"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:128
|
||||
msgid "Upload background"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:122
|
||||
msgid "Upload background (available space: %1024.2mB)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:131
|
||||
msgid "Upload..."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:56
|
||||
msgid "Wallhaven"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:52
|
||||
msgid "Wallpaper source"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:124
|
||||
msgid ""
|
||||
"You can upload files such as gif/jpg/mp4/png/webm/webp files, to change the "
|
||||
"login page background."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:108
|
||||
msgid "[Dark mode] Frosted Glass Radius"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:90
|
||||
msgid "[Dark mode] Primary Color"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:101
|
||||
msgid "[Dark mode] Transparency"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:84
|
||||
msgid "[Light mode] Frosted Glass Radius"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:67
|
||||
msgid "[Light mode] Primary Color"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:77
|
||||
msgid "[Light mode] Transparency"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:73
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:97
|
||||
msgid "valid HEX color value"
|
||||
msgstr ""
|
1
luci-app-argon-config/po/zh-cn
Symbolic link
1
luci-app-argon-config/po/zh-cn
Symbolic link
@ -0,0 +1 @@
|
||||
zh_Hans
|
192
luci-app-argon-config/po/zh_Hans/argon-config.po
Normal file
192
luci-app-argon-config/po/zh_Hans/argon-config.po
Normal file
@ -0,0 +1,192 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: dingpengyu <jerrykuku@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: zh_CN\n"
|
||||
"X-Generator: Poedit 2.3.1\n"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:102
|
||||
msgid "0 transparent - 1 opaque (suggest: black translucent preset: 0.5)."
|
||||
msgstr "0 最透明 - 1 不透明(建议:黑色半透明 0.5)"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:78
|
||||
msgid ""
|
||||
"0 transparent - 1 opaque (suggest: transparent: 0 or translucent preset: "
|
||||
"0.5)."
|
||||
msgstr "0 最透明 - 1 不透明(建议: 透明 0 或 半透明预设 0.5)。"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:91
|
||||
msgid "A HEX Color (default: #483d8b)."
|
||||
msgstr "十六进制颜色值(预设为:#483d8b)。"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:67
|
||||
msgid "A HEX color (default: #5e72e4)."
|
||||
msgstr "十六进制颜色值(预设为:#5e72e4)。"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:155
|
||||
msgid "Action"
|
||||
msgstr "操作"
|
||||
|
||||
#: applications/luci-app-argon-config/root/usr/share/luci/menu.d/luci-app-argon-config.json:3
|
||||
msgid "Argon Config"
|
||||
msgstr "Argon 主题设置"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:45
|
||||
msgid "Argon theme configuration"
|
||||
msgstr "Argon 主题设置"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:175
|
||||
msgid "Background file list"
|
||||
msgstr "背景文件列表"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:54
|
||||
msgid "Bing"
|
||||
msgstr "Bing"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:53
|
||||
msgid "Built-in"
|
||||
msgstr "内建"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:63
|
||||
msgid "Dark mode"
|
||||
msgstr "暗黑模式"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:170
|
||||
msgid "Delete"
|
||||
msgstr "删除"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:73
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:97
|
||||
msgid "Expecting: %s"
|
||||
msgstr "请输入:%s"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:139
|
||||
msgid "Failed to upload file: %s."
|
||||
msgstr "上传文件失败:%s。"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:152
|
||||
msgid "Filename"
|
||||
msgstr "文件名"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:129
|
||||
msgid "Files will be uploaded to <code>%s</code>."
|
||||
msgstr "文件将被上传至<code>%s</code>。"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:61
|
||||
msgid "Follow system"
|
||||
msgstr "跟随系统"
|
||||
|
||||
#: applications/luci-app-argon-config/root/usr/share/rpcd/acl.d/luci-app-argon-config.json:3
|
||||
msgid "Grant UCI access for luci-app-argon-config"
|
||||
msgstr "授予 luci-app-argon-config 访问 UCI 配置的权限"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:46
|
||||
msgid ""
|
||||
"Here you can set the blur and transparency of the login page of argon theme, "
|
||||
"and manage the background pictures and videos. Chrome is recommended."
|
||||
msgstr ""
|
||||
"在这里你可以设置argon 主题的登录页面的模糊和透明度,并管理背景图片与视频。推"
|
||||
"荐使用 Chrome。"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:85
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:109
|
||||
msgid "Larger value will more blurred (suggest: clear: 1 or blur preset: 10)."
|
||||
msgstr "值越大越模糊(建议:清透 1 或 模糊预设 10)"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:62
|
||||
msgid "Light mode"
|
||||
msgstr "亮色模式"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:153
|
||||
msgid "Modified date"
|
||||
msgstr "修改时间"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:172
|
||||
msgid "No files found."
|
||||
msgstr "没有找到文件。"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:116
|
||||
msgid "Save current settings"
|
||||
msgstr "保存当前设置"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:114
|
||||
msgid "Save settings"
|
||||
msgstr "保存设置"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:154
|
||||
msgid "Size"
|
||||
msgstr "大小"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:48
|
||||
msgid "Theme configuration"
|
||||
msgstr "主题配置"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:60
|
||||
msgid "Theme mode"
|
||||
msgstr "主题模式"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:55
|
||||
msgid "Unsplash"
|
||||
msgstr "Unsplash"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:128
|
||||
msgid "Upload background"
|
||||
msgstr "上传背景"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:122
|
||||
msgid "Upload background (available space: %1024.2mB)"
|
||||
msgstr "上传背景(可用空间:%1024.2mB)"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:131
|
||||
msgid "Upload..."
|
||||
msgstr "上传..."
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:56
|
||||
msgid "Wallhaven"
|
||||
msgstr "Wallhaven"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:52
|
||||
msgid "Wallpaper source"
|
||||
msgstr "壁纸来源"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:124
|
||||
msgid ""
|
||||
"You can upload files such as gif/jpg/mp4/png/webm/webp files, to change the "
|
||||
"login page background."
|
||||
msgstr ""
|
||||
"你可以上传 gif/jpg/mp4/png/webm/webp 等格式的文件,以创建自己喜欢的登录界面。"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:108
|
||||
msgid "[Dark mode] Frosted Glass Radius"
|
||||
msgstr "[暗色模式] 毛玻璃模糊半径"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:90
|
||||
msgid "[Dark mode] Primary Color"
|
||||
msgstr "[暗色模式] 主色调"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:101
|
||||
msgid "[Dark mode] Transparency"
|
||||
msgstr "[暗色模式] 透明度"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:84
|
||||
msgid "[Light mode] Frosted Glass Radius"
|
||||
msgstr "[亮色模式] 毛玻璃模糊半径"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:67
|
||||
msgid "[Light mode] Primary Color"
|
||||
msgstr "[亮色模式] 主色调"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:77
|
||||
msgid "[Light mode] Transparency"
|
||||
msgstr "[亮色模式] 透明度"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:73
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:97
|
||||
msgid "valid HEX color value"
|
||||
msgstr "有效十六进制颜色值"
|
273
luci-app-argon-config/po/zh_Hant/argon-config.po
Normal file
273
luci-app-argon-config/po/zh_Hant/argon-config.po
Normal file
@ -0,0 +1,273 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Victor Tseng <palatis@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: zh_TW\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 3.2.2\n"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:102
|
||||
msgid "0 transparent - 1 opaque (suggest: black translucent preset: 0.5)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:78
|
||||
msgid ""
|
||||
"0 transparent - 1 opaque (suggest: transparent: 0 or translucent preset: "
|
||||
"0.5)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:91
|
||||
msgid "A HEX Color (default: #483d8b)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:67
|
||||
msgid "A HEX color (default: #5e72e4)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:155
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/root/usr/share/luci/menu.d/luci-app-argon-config.json:3
|
||||
msgid "Argon Config"
|
||||
msgstr "Argon 設定"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:45
|
||||
msgid "Argon theme configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:175
|
||||
msgid "Background file list"
|
||||
msgstr "背景檔案清單"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:54
|
||||
msgid "Bing"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:53
|
||||
msgid "Built-in"
|
||||
msgstr "內建"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:63
|
||||
msgid "Dark mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:170
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:73
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:97
|
||||
msgid "Expecting: %s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:139
|
||||
msgid "Failed to upload file: %s."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:152
|
||||
msgid "Filename"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:129
|
||||
msgid "Files will be uploaded to <code>%s</code>."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:61
|
||||
msgid "Follow system"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/root/usr/share/rpcd/acl.d/luci-app-argon-config.json:3
|
||||
msgid "Grant UCI access for luci-app-argon-config"
|
||||
msgstr "為 luci-app-argon-config 授予 UCI 權限"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:46
|
||||
msgid ""
|
||||
"Here you can set the blur and transparency of the login page of argon theme, "
|
||||
"and manage the background pictures and videos. Chrome is recommended."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:85
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:109
|
||||
msgid "Larger value will more blurred (suggest: clear: 1 or blur preset: 10)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:62
|
||||
msgid "Light mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:153
|
||||
msgid "Modified date"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:172
|
||||
msgid "No files found."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:116
|
||||
msgid "Save current settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:114
|
||||
msgid "Save settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:154
|
||||
msgid "Size"
|
||||
msgstr "容量"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:48
|
||||
msgid "Theme configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:60
|
||||
msgid "Theme mode"
|
||||
msgstr "佈景主題模式"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:55
|
||||
msgid "Unsplash"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:128
|
||||
msgid "Upload background"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:122
|
||||
msgid "Upload background (available space: %1024.2mB)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:131
|
||||
msgid "Upload..."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:56
|
||||
msgid "Wallhaven"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:52
|
||||
msgid "Wallpaper source"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:124
|
||||
msgid ""
|
||||
"You can upload files such as gif/jpg/mp4/png/webm/webp files, to change the "
|
||||
"login page background."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:108
|
||||
msgid "[Dark mode] Frosted Glass Radius"
|
||||
msgstr "《深色模式》模糊效果半徑"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:90
|
||||
msgid "[Dark mode] Primary Color"
|
||||
msgstr "《深色模式》主色彩"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:101
|
||||
msgid "[Dark mode] Transparency"
|
||||
msgstr "《深色模式》透明度"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:84
|
||||
msgid "[Light mode] Frosted Glass Radius"
|
||||
msgstr "《淺色模式》模糊效果半徑"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:67
|
||||
msgid "[Light mode] Primary Color"
|
||||
msgstr "《淺色模式》主色彩"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:77
|
||||
msgid "[Light mode] Transparency"
|
||||
msgstr "《淺色模式》透明度"
|
||||
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:73
|
||||
#: applications/luci-app-argon-config/htdocs/luci-static/resources/view/argon-config.js:97
|
||||
msgid "valid HEX color value"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "0 transparent - 1 opaque ; ( Suggest: Black translucent preset: 0.5 )"
|
||||
#~ msgstr "0 全透明 - 1 不透明(建議:黑色半透明 0.5)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "0 transparent - 1 opaque ; ( Suggest: transparent: 0 or translucent "
|
||||
#~ "preset: 0.5 )"
|
||||
#~ msgstr "0 全透明 - 1 不透明(建議:全透明 0,或半透明 0.5)"
|
||||
|
||||
#~ msgid "A HEX Color ; ( Default: #483d8b )"
|
||||
#~ msgstr "十六進制顏色(預設 #483d8b)"
|
||||
|
||||
#~ msgid "A HEX Color ; ( Default: #5e72e4 )"
|
||||
#~ msgstr "十六進制顏色(預設 #5e72e4)"
|
||||
|
||||
#~ msgid "Bing Wallpapers"
|
||||
#~ msgstr "必應桌布"
|
||||
|
||||
#~ msgid "Choose local file:"
|
||||
#~ msgstr "選擇本地檔案:"
|
||||
|
||||
#~ msgid "Create upload file error."
|
||||
#~ msgstr "建立上傳檔案錯誤。"
|
||||
|
||||
#~ msgid "File name"
|
||||
#~ msgstr "檔案名稱"
|
||||
|
||||
#~ msgid "File saved to"
|
||||
#~ msgstr "檔案已儲存至"
|
||||
|
||||
#~ msgid "Follow System"
|
||||
#~ msgstr "跟隨系統配色"
|
||||
|
||||
#~ msgid "Force Dark"
|
||||
#~ msgstr "強制深色"
|
||||
|
||||
#~ msgid "Force Light"
|
||||
#~ msgstr "強制淺色"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Here you can set the blur and transparency of the login page of argon "
|
||||
#~ "theme, and manage the background pictures and videos.[Chrome is "
|
||||
#~ "recommended]"
|
||||
#~ msgstr ""
|
||||
#~ "您可以在此設定登入畫面的模糊度、透明度、以及管理背景圖片與影片(推薦使用 "
|
||||
#~ "Chrome)。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Larger value will more blurred ; ( Suggest: clear: 1 or blur preset: 10 )"
|
||||
#~ msgstr "數值越大越模糊(建議:清晰 1,或模糊程度 10)"
|
||||
|
||||
#~ msgid "Modify time"
|
||||
#~ msgstr "修改時間"
|
||||
|
||||
#~ msgid "No specify upload file."
|
||||
#~ msgstr "沒有選擇要上傳的檔案。"
|
||||
|
||||
#~ msgid "Remove"
|
||||
#~ msgstr "移除"
|
||||
|
||||
#~ msgid "Save Changes"
|
||||
#~ msgstr "保存變更"
|
||||
|
||||
#~ msgid "Upload"
|
||||
#~ msgstr "上傳"
|
||||
|
||||
#~ msgid "Upload (Free:"
|
||||
#~ msgstr "上傳(剩餘空間:"
|
||||
|
||||
#~ msgid "Upload file to '/www/luci-static/argon/background/'"
|
||||
#~ msgstr "上傳檔案至「/www/luci-static/argon/background」"
|
||||
|
||||
#~ msgid "Wallpaper Source"
|
||||
#~ msgstr "桌布來源"
|
||||
|
||||
#~ msgid "You can choose Theme color mode here"
|
||||
#~ msgstr "您可以在此選擇佈景主題的顏色模式"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "You can upload files such as jpg,png,gif,mp4,webm files, To change the "
|
||||
#~ "login page background."
|
||||
#~ msgstr ""
|
||||
#~ "您可以上傳諸如 jpg、png、gif、mp4、webm 等類型的檔案來更換登入畫面的背景。"
|
10
luci-app-argon-config/root/etc/config/argon
Normal file
10
luci-app-argon-config/root/etc/config/argon
Normal file
@ -0,0 +1,10 @@
|
||||
config global
|
||||
option primary '#5e72e4'
|
||||
option dark_primary '#483d8b'
|
||||
option blur '10'
|
||||
option blur_dark '10'
|
||||
option transparency '0.5'
|
||||
option transparency_dark '0.5'
|
||||
option mode 'normal'
|
||||
option online_wallpaper 'bing'
|
||||
|
@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
|
||||
bing_background="$(uci -q get "argon.@global[0].bing_background")"
|
||||
[ -n "$bing_background" ] || exit 0
|
||||
|
||||
if [ "$bing_background" = "1" ]; then
|
||||
uci -q set "argon.@global[0].online_wallpaper"="bing"
|
||||
else
|
||||
uci -q set "argon.@global[0].online_wallpaper"="none"
|
||||
fi
|
||||
uci -q delete "argon.@global[0].bing_background"
|
||||
uci -q commit "argon"
|
||||
|
||||
exit 0
|
64
luci-app-argon-config/root/usr/libexec/rpcd/luci.argon
Executable file
64
luci-app-argon-config/root/usr/libexec/rpcd/luci.argon
Executable file
@ -0,0 +1,64 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions.sh
|
||||
. /usr/share/libubox/jshn.sh
|
||||
|
||||
readonly bg_path="/www/luci-static/argon/background"
|
||||
readonly tmp_path="/tmp/argon_background.tmp"
|
||||
|
||||
case "$1" in
|
||||
"list")
|
||||
json_init
|
||||
json_add_object "avail"
|
||||
json_close_object
|
||||
json_add_object "remove"
|
||||
json_add_string "filename" "filename"
|
||||
json_close_object
|
||||
json_add_object "rename"
|
||||
json_add_string "newname" "filename"
|
||||
json_close_object
|
||||
json_dump
|
||||
json_cleanup
|
||||
;;
|
||||
"call")
|
||||
case "$2" in
|
||||
"avail")
|
||||
json_init
|
||||
json_add_int "avail" "$(df | grep -E '/$' | awk '{print $4}')"
|
||||
json_dump
|
||||
json_cleanup
|
||||
;;
|
||||
"remove")
|
||||
read -r input
|
||||
json_load "$input"
|
||||
json_get_var filename "filename"
|
||||
json_cleanup
|
||||
|
||||
if dirname "$filename" | grep -q ".."; then
|
||||
echo '{ "result": 255 }'
|
||||
exit 255
|
||||
fi
|
||||
|
||||
rm -f "$bg_path/$filename"
|
||||
echo '{ "result": 0 }'
|
||||
;;
|
||||
"rename")
|
||||
read -r input
|
||||
json_load "$input"
|
||||
json_get_var newname "newname"
|
||||
json_cleanup
|
||||
|
||||
if dirname "$newname" | grep -q ".."; then
|
||||
echo '{ "result": 255 }'
|
||||
exit 255
|
||||
fi
|
||||
|
||||
if mv "$tmp_path" "$bg_path/$newname" 2>"/dev/null"; then
|
||||
echo '{ "result": 0 }'
|
||||
else
|
||||
echo '{ "result": 1 }'
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
esac
|
@ -0,0 +1,14 @@
|
||||
{
|
||||
"admin/system/argon-config": {
|
||||
"title": "Argon Config",
|
||||
"order": 90,
|
||||
"action": {
|
||||
"type": "view",
|
||||
"path": "argon-config"
|
||||
},
|
||||
"depends": {
|
||||
"acl": [ "luci-app-argon-config" ],
|
||||
"uci": { "argon": true }
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
{
|
||||
"luci-app-argon-config": {
|
||||
"description": "Grant UCI access for luci-app-argon-config",
|
||||
"read": {
|
||||
"file": {
|
||||
"/www/luci-static/argon/background/*": [ "list" ]
|
||||
},
|
||||
"ubus": {
|
||||
"luci.argon": [ "avail", "remove", "rename" ]
|
||||
},
|
||||
"uci": [ "argon" ]
|
||||
},
|
||||
"write": {
|
||||
"file": {
|
||||
"/tmp/argon_background.tmp": [ "write" ]
|
||||
},
|
||||
"uci": [ "argon" ]
|
||||
}
|
||||
}
|
||||
}
|
Binary file not shown.
37402
luci-app-openclash/root/etc/openclash/GeoSite.dat
Normal file
37402
luci-app-openclash/root/etc/openclash/GeoSite.dat
Normal file
File diff suppressed because one or more lines are too long
65041
luci-app-openclash/root/etc/openclash/accelerated-domains.china.conf
Normal file
65041
luci-app-openclash/root/etc/openclash/accelerated-domains.china.conf
Normal file
File diff suppressed because it is too large
Load Diff
1943
luci-app-openclash/root/etc/openclash/china_ip6_route.ipset
Normal file
1943
luci-app-openclash/root/etc/openclash/china_ip6_route.ipset
Normal file
File diff suppressed because it is too large
Load Diff
8617
luci-app-openclash/root/etc/openclash/china_ip_route.ipset
Normal file
8617
luci-app-openclash/root/etc/openclash/china_ip_route.ipset
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,2 @@
|
||||
#baidu.com
|
||||
#2400:da00::dbf:0:100
|
@ -0,0 +1,4 @@
|
||||
#baidu.com
|
||||
#114.114.114.114
|
||||
##解决绕过大陆后谷歌商店无法更新
|
||||
services.googleapis.cn
|
@ -0,0 +1 @@
|
||||
#baidu.com
|
@ -0,0 +1,2 @@
|
||||
#'www.baidu.com': '114.114.114.114'
|
||||
#'+.internal.crop.com': '10.0.0.1'
|
@ -0,0 +1,139 @@
|
||||
#LAN
|
||||
*.lan
|
||||
*.localdomain
|
||||
*.example
|
||||
*.invalid
|
||||
*.localhost
|
||||
*.test
|
||||
*.local
|
||||
*.home.arpa
|
||||
#放行NTP服务
|
||||
time.*.com
|
||||
time.*.gov
|
||||
time.*.edu.cn
|
||||
time.*.apple.com
|
||||
time-ios.apple.com
|
||||
time1.*.com
|
||||
time2.*.com
|
||||
time3.*.com
|
||||
time4.*.com
|
||||
time5.*.com
|
||||
time6.*.com
|
||||
time7.*.com
|
||||
ntp.*.com
|
||||
ntp1.*.com
|
||||
ntp2.*.com
|
||||
ntp3.*.com
|
||||
ntp4.*.com
|
||||
ntp5.*.com
|
||||
ntp6.*.com
|
||||
ntp7.*.com
|
||||
*.time.edu.cn
|
||||
*.ntp.org.cn
|
||||
+.pool.ntp.org
|
||||
time1.cloud.tencent.com
|
||||
#放行网易云音乐
|
||||
music.163.com
|
||||
*.music.163.com
|
||||
*.126.net
|
||||
#百度音乐
|
||||
musicapi.taihe.com
|
||||
music.taihe.com
|
||||
#酷狗音乐
|
||||
songsearch.kugou.com
|
||||
trackercdn.kugou.com
|
||||
#酷我音乐
|
||||
*.kuwo.cn
|
||||
#JOOX音乐
|
||||
api-jooxtt.sanook.com
|
||||
api.joox.com
|
||||
joox.com
|
||||
#QQ音乐
|
||||
y.qq.com
|
||||
*.y.qq.com
|
||||
streamoc.music.tc.qq.com
|
||||
mobileoc.music.tc.qq.com
|
||||
isure.stream.qqmusic.qq.com
|
||||
dl.stream.qqmusic.qq.com
|
||||
aqqmusic.tc.qq.com
|
||||
amobile.music.tc.qq.com
|
||||
#虾米音乐
|
||||
*.xiami.com
|
||||
#咪咕音乐
|
||||
*.music.migu.cn
|
||||
music.migu.cn
|
||||
#win10本地连接检测
|
||||
+.msftconnecttest.com
|
||||
+.msftncsi.com
|
||||
#QQ登录
|
||||
localhost.ptlogin2.qq.com
|
||||
localhost.sec.qq.com
|
||||
+.qq.com
|
||||
+.tencent.com
|
||||
#Game
|
||||
#Nintendo Switch
|
||||
+.srv.nintendo.net
|
||||
*.n.n.srv.nintendo.net
|
||||
#Sony PlayStation
|
||||
+.stun.playstation.net
|
||||
#Microsoft Xbox
|
||||
xbox.*.*.microsoft.com
|
||||
*.*.xboxlive.com
|
||||
xbox.*.microsoft.com
|
||||
xnotify.xboxlive.com
|
||||
#Wotgame
|
||||
+.battlenet.com.cn
|
||||
+.wotgame.cn
|
||||
+.wggames.cn
|
||||
+.wowsgame.cn
|
||||
+.wargaming.net
|
||||
#Golang
|
||||
proxy.golang.org
|
||||
#STUN
|
||||
stun.*.*
|
||||
stun.*.*.*
|
||||
+.stun.*.*
|
||||
+.stun.*.*.*
|
||||
+.stun.*.*.*.*
|
||||
+.stun.*.*.*.*.*
|
||||
#Linksys Router
|
||||
heartbeat.belkin.com
|
||||
*.linksys.com
|
||||
*.linksyssmartwifi.com
|
||||
#ASUS Router
|
||||
*.router.asus.com
|
||||
#Apple Software Update Service
|
||||
mesu.apple.com
|
||||
swscan.apple.com
|
||||
swquery.apple.com
|
||||
swdownload.apple.com
|
||||
swcdn.apple.com
|
||||
swdist.apple.com
|
||||
#Google
|
||||
lens.l.google.com
|
||||
stun.l.google.com
|
||||
na.b.g-tun.com
|
||||
#Netflix
|
||||
+.nflxvideo.net
|
||||
#FinalFantasy XIV Worldwide Server & CN Server
|
||||
*.square-enix.com
|
||||
*.finalfantasyxiv.com
|
||||
*.ffxiv.com
|
||||
*.ff14.sdo.com
|
||||
ff.dorado.sdo.com
|
||||
#Bilibili
|
||||
*.mcdn.bilivideo.cn
|
||||
#Disney Plus
|
||||
+.media.dssott.com
|
||||
#shark007 Codecs
|
||||
shark007.net
|
||||
#Mijia
|
||||
Mijia Cloud
|
||||
#招商银行
|
||||
+.cmbchina.com
|
||||
+.cmbimg.com
|
||||
#AdGuard
|
||||
local.adguard.org
|
||||
#迅雷
|
||||
+.sandai.net
|
||||
+.n0808.com
|
@ -0,0 +1,40 @@
|
||||
# If IP addresses resolved with servers in `nameservers` are in the specified
|
||||
# subnets below, they are considered invalid and results from `fallback`
|
||||
# servers are used instead.
|
||||
#
|
||||
# IP address resolved with servers in `nameserver` is used when
|
||||
# `fallback-filter.geoip` is true and when GEOIP of the IP address is `CN`.
|
||||
#
|
||||
# If `fallback-filter.geoip` is false, results from `nameserver` nameservers
|
||||
# are always used if not match `fallback-filter.ipcidr`.
|
||||
#
|
||||
# This is a countermeasure against DNS pollution attacks.
|
||||
|
||||
fallback-filter:
|
||||
geoip: true
|
||||
geoip-code: CN
|
||||
ipcidr:
|
||||
- 0.0.0.0/8
|
||||
- 10.0.0.0/8
|
||||
- 100.64.0.0/10
|
||||
- 127.0.0.0/8
|
||||
- 169.254.0.0/16
|
||||
- 172.16.0.0/12
|
||||
- 192.0.0.0/24
|
||||
- 192.0.2.0/24
|
||||
- 192.88.99.0/24
|
||||
- 192.168.0.0/16
|
||||
- 198.18.0.0/15
|
||||
- 198.51.100.0/24
|
||||
- 203.0.113.0/24
|
||||
- 224.0.0.0/4
|
||||
- 240.0.0.0/4
|
||||
- 255.255.255.255/32
|
||||
domain:
|
||||
- "+.google.com"
|
||||
- "+.facebook.com"
|
||||
- "+.youtube.com"
|
||||
- "+.githubusercontent.com"
|
||||
- "+.googlevideo.com"
|
||||
- "+.msftconnecttest.com"
|
||||
- "+.msftncsi.com"
|
@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
. /usr/share/openclash/log.sh
|
||||
. /lib/functions.sh
|
||||
|
||||
# This script is called by /etc/init.d/openclash
|
||||
# Add your custom firewall rules here, they will be added after the end of the OpenClash iptables rules
|
||||
|
||||
LOG_OUT "Tip: Start Add Custom Firewall Rules..."
|
||||
|
||||
exit 0
|
@ -0,0 +1,10 @@
|
||||
# Static hosts for DNS server and connection establishment (like /etc/hosts)
|
||||
#
|
||||
# Wildcard hostnames are supported (e.g. *.clash.dev, *.foo.*.example.com)
|
||||
# Non-wildcard domain names have a higher priority than wildcard domain names
|
||||
# e.g. foo.example.com > *.example.com > .example.com
|
||||
# P.S. +.foo.com equals to .foo.com and foo.com
|
||||
|
||||
# '*.clash.dev': 127.0.0.1
|
||||
# '.dev': 127.0.0.1
|
||||
# 'alpha.clash.dev': '::1'
|
@ -0,0 +1,9 @@
|
||||
0.0.0.0/8
|
||||
10.0.0.0/8
|
||||
100.64.0.0/10
|
||||
127.0.0.0/8
|
||||
169.254.0.0/16
|
||||
172.16.0.0/12
|
||||
192.168.0.0/16
|
||||
224.0.0.0/4
|
||||
240.0.0.0/4
|
@ -0,0 +1,13 @@
|
||||
::/128
|
||||
::1/128
|
||||
::ffff:0:0/96
|
||||
::ffff:0:0:0/96
|
||||
64:ff9b::/96
|
||||
100::/64
|
||||
2001::/32
|
||||
2001:20::/28
|
||||
2001:db8::/32
|
||||
2002::/16
|
||||
fc00::/7
|
||||
fe80::/10
|
||||
ff00::/8
|
@ -0,0 +1,11 @@
|
||||
ipv4-c041-hkg001-ix.1.oca.nflxvideo.net
|
||||
ipv4-c016-jnb001-ix.1.oca.nflxvideo.net
|
||||
ipv4-c007-sin001-ix.1.oca.nflxvideo.net
|
||||
ipv4-c010-jnb001-ix.1.oca.nflxvideo.net
|
||||
ipv4-c047-sin001-ix.1.oca.nflxvideo.net
|
||||
ipv6-c041-hkg001-ix.1.oca.nflxvideo.net
|
||||
ipv4-c056-sin001-ix.1.oca.nflxvideo.net
|
||||
ipv4-c030-sin001-ix.1.oca.nflxvideo.net
|
||||
ipv4-c025-jnb001-ix.1.oca.nflxvideo.net
|
||||
ipv4-c027-jnb001-ix.1.oca.nflxvideo.net
|
||||
ipv4-c046-hkg001-ix.1.oca.nflxvideo.net
|
@ -0,0 +1,69 @@
|
||||
#!/bin/sh
|
||||
. /usr/share/openclash/ruby.sh
|
||||
. /usr/share/openclash/log.sh
|
||||
. /lib/functions.sh
|
||||
|
||||
# This script is called by /etc/init.d/openclash
|
||||
# Add your custom overwrite scripts here, they will be take effict after the OpenClash own srcipts
|
||||
|
||||
LOG_OUT "Tip: Start Running Custom Overwrite Scripts..."
|
||||
LOGTIME=$(echo $(date "+%Y-%m-%d %H:%M:%S"))
|
||||
LOG_FILE="/tmp/openclash.log"
|
||||
CONFIG_FILE="$1" #config path
|
||||
|
||||
#Simple Demo:
|
||||
#General Demo
|
||||
#1--config path
|
||||
#2--key name
|
||||
#3--value
|
||||
#ruby_edit "$CONFIG_FILE" "['redir-port']" "7892"
|
||||
#ruby_edit "$CONFIG_FILE" "['secret']" "123456"
|
||||
#ruby_edit "$CONFIG_FILE" "['dns']['enable']" "true"
|
||||
|
||||
#Hash Demo
|
||||
#1--config path
|
||||
#2--key name
|
||||
#3--hash type value
|
||||
#ruby_edit "$CONFIG_FILE" "['experimental']" "{'sniff-tls-sni'=>true}"
|
||||
#ruby_edit "$CONFIG_FILE" "['sniffer']" "{'sniffing'=>['tls','http']}"
|
||||
|
||||
#Array Demo:
|
||||
#1--config path
|
||||
#2--key name
|
||||
#3--position(start from 0, end with -1)
|
||||
#4--value
|
||||
#ruby_arr_insert "$CONFIG_FILE" "['dns']['nameserver']" "0" "114.114.114.114"
|
||||
|
||||
#Array Add From Yaml File Demo:
|
||||
#1--config path
|
||||
#2--key name
|
||||
#3--position(start from 0, end with -1)
|
||||
#4--value file path
|
||||
#5--value key name in #4 file
|
||||
#ruby_arr_add_file "$CONFIG_FILE" "['dns']['fallback-filter']['ipcidr']" "0" "/etc/openclash/custom/openclash_custom_fallback_filter.yaml" "['fallback-filter']['ipcidr']"
|
||||
|
||||
#Ruby Script Demo:
|
||||
#ruby -ryaml -rYAML -I "/usr/share/openclash" -E UTF-8 -e "
|
||||
# begin
|
||||
# Value = YAML.load_file('$CONFIG_FILE');
|
||||
# rescue Exception => e
|
||||
# puts '${LOGTIME} Error: Load File Failed,【' + e.message + '】';
|
||||
# end;
|
||||
|
||||
#General
|
||||
# begin
|
||||
# Thread.new{
|
||||
# Value['redir-port']=7892;
|
||||
# Value['tproxy-port']=7895;
|
||||
# Value['port']=7890;
|
||||
# Value['socks-port']=7891;
|
||||
# Value['mixed-port']=7893;
|
||||
# }.join;
|
||||
|
||||
# rescue Exception => e
|
||||
# puts '${LOGTIME} Error: Set General Failed,【' + e.message + '】';
|
||||
# ensure
|
||||
# File.open('$CONFIG_FILE','w') {|f| YAML.dump(Value, f)};
|
||||
# end" 2>/dev/null >> $LOG_FILE
|
||||
|
||||
exit 0
|
@ -0,0 +1,69 @@
|
||||
script:
|
||||
## shortcuts:
|
||||
## Notice: The core timezone is UTC
|
||||
## CST 20:00-24:00 = time.now().hour > 12 and time.now().hour < 16
|
||||
## 内核时区为UTC,故以下time.now()函数的取值需要根据本地时区进行转换
|
||||
## 北京时间(CST) 20:00-24:00 = time.now().hour > 12 and time.now().hour < 16
|
||||
## quic: network == 'udp' and dst_port == 443 and (geoip(resolve_ip(host)) != 'CN' or geoip(dst_ip) != 'CN')
|
||||
## time-limit: in_cidr(src_ip,'192.168.1.2/32') and time.now().hour < 20 or time.now().hour > 21
|
||||
## time-limit: src_ip == '192.168.1.2' and time.now().hour < 20 or time.now().hour > 21
|
||||
|
||||
## code: |
|
||||
## def main(ctx, metadata):
|
||||
## directkeywordlist = ["baidu"]
|
||||
## for directkeyword in directkeywordlist:
|
||||
## if directkeyword in metadata["host"]:
|
||||
## ctx.log('[Script] matched keyword %s use direct' % directkeyword)
|
||||
## return "DIRECT"
|
||||
|
||||
rules:
|
||||
##- SCRIPT,quic,REJECT #shortcuts rule
|
||||
##- SCRIPT,time-limit,REJECT #shortcuts rule
|
||||
|
||||
##- PROCESS-NAME,curl,DIRECT #匹配路由自身进程(curl直连)
|
||||
##- DOMAIN-SUFFIX,google.com,Proxy #匹配域名后缀(交由Proxy代理服务器组)
|
||||
##- DOMAIN-KEYWORD,google,Proxy #匹配域名关键字(交由Proxy代理服务器组)
|
||||
##- DOMAIN,google.com,Proxy #匹配域名(交由Proxy代理服务器组)
|
||||
##- DOMAIN-SUFFIX,ad.com,REJECT #匹配域名后缀(拒绝)
|
||||
##- IP-CIDR,127.0.0.0/8,DIRECT #匹配数据目标IP(直连)
|
||||
##- SRC-IP-CIDR,192.168.1.201/32,DIRECT #匹配数据发起IP(直连)
|
||||
##- DST-PORT,80,DIRECT #匹配数据目标端口(直连)
|
||||
##- SRC-PORT,7777,DIRECT #匹配数据源端口(直连)
|
||||
|
||||
##排序在上的规则优先生效,如添加(去除规则前的#号):
|
||||
##IP段:192.168.1.2-192.168.1.200 直连
|
||||
##- SRC-IP-CIDR,192.168.1.2/31,DIRECT
|
||||
##- SRC-IP-CIDR,192.168.1.4/30,DIRECT
|
||||
##- SRC-IP-CIDR,192.168.1.8/29,DIRECT
|
||||
##- SRC-IP-CIDR,192.168.1.16/28,DIRECT
|
||||
##- SRC-IP-CIDR,192.168.1.32/27,DIRECT
|
||||
##- SRC-IP-CIDR,192.168.1.64/26,DIRECT
|
||||
##- SRC-IP-CIDR,192.168.1.128/26,DIRECT
|
||||
##- SRC-IP-CIDR,192.168.1.192/29,DIRECT
|
||||
##- SRC-IP-CIDR,192.168.1.200/32,DIRECT
|
||||
|
||||
##IP段:192.168.1.202-192.168.1.255 直连
|
||||
##- SRC-IP-CIDR,192.168.1.202/31,DIRECT
|
||||
##- SRC-IP-CIDR,192.168.1.204/30,DIRECT
|
||||
##- SRC-IP-CIDR,192.168.1.208/28,DIRECT
|
||||
##- SRC-IP-CIDR,192.168.1.224/27,DIRECT
|
||||
|
||||
##此时IP为192.168.1.1和192.168.1.201的客户端流量走代理(策略),其余客户端不走代理
|
||||
##因为Fake-IP模式下,IP地址为192.168.1.1的路由器自身流量可走代理(策略),所以需要排除
|
||||
|
||||
##仅设置路由器自身直连:
|
||||
##- SRC-IP-CIDR,192.168.1.1/32,DIRECT
|
||||
##- SRC-IP-CIDR,198.18.0.1/32,DIRECT
|
||||
|
||||
##DDNS
|
||||
##- DOMAIN-SUFFIX,checkip.dyndns.org,DIRECT
|
||||
##- DOMAIN-SUFFIX,checkipv6.dyndns.org,DIRECT
|
||||
##- DOMAIN-SUFFIX,checkip.synology.com,DIRECT
|
||||
##- DOMAIN-SUFFIX,ifconfig.co,DIRECT
|
||||
##- DOMAIN-SUFFIX,api.myip.com,DIRECT
|
||||
##- DOMAIN-SUFFIX,ip-api.com,DIRECT
|
||||
##- DOMAIN-SUFFIX,ipapi.co,DIRECT
|
||||
##- DOMAIN-SUFFIX,ip6.seeip.org,DIRECT
|
||||
##- DOMAIN-SUFFIX,members.3322.org,DIRECT
|
||||
|
||||
##在线IP段转CIDR地址:http://ip2cidr.com
|
@ -0,0 +1,23 @@
|
||||
script:
|
||||
## shortcuts:
|
||||
## common_port: dst_port not in [21, 22, 23, 53, 80, 123, 143, 194, 443, 465, 587, 853, 993, 995, 998, 2052, 2053, 2082, 2083, 2086, 2095, 2096, 5222, 5228, 5229, 5230, 8080, 8443, 8880, 8888, 8889]
|
||||
|
||||
## code: |
|
||||
## def main(ctx, metadata):
|
||||
## directkeywordlist = ["baidu"]
|
||||
## for directkeyword in directkeywordlist:
|
||||
## if directkeyword in metadata["host"]:
|
||||
## ctx.log('[Script] matched keyword %s use direct' % directkeyword)
|
||||
## return "DIRECT"
|
||||
|
||||
rules:
|
||||
##- SCRIPT,common_port,DIRECT #shortcuts rule
|
||||
|
||||
##- DOMAIN-SUFFIX,google.com,Proxy #匹配域名后缀(交由Proxy代理服务器组)
|
||||
##- DOMAIN-KEYWORD,google,Proxy #匹配域名关键字(交由Proxy代理服务器组)
|
||||
##- DOMAIN,google.com,Proxy #匹配域名(交由Proxy代理服务器组)
|
||||
##- DOMAIN-SUFFIX,ad.com,REJECT #匹配域名后缀(拒绝)
|
||||
##- IP-CIDR,127.0.0.0/8,DIRECT #匹配数据目标IP(直连)
|
||||
##- SRC-IP-CIDR,192.168.1.201/32,DIRECT #匹配数据发起IP(直连)
|
||||
##- DST-PORT,80,DIRECT #匹配数据目标端口(直连)
|
||||
##- SRC-PORT,7777,DIRECT #匹配数据源端口(直连)
|
@ -0,0 +1,6 @@
|
||||
force-domain:
|
||||
# - '+'
|
||||
- '+.netflix.com'
|
||||
- '+.nflxvideo.net'
|
||||
- '+.amazonaws.com'
|
||||
- '+.media.dssott.com'
|
@ -0,0 +1,4 @@
|
||||
skip-domain:
|
||||
- '+.apple.com'
|
||||
- Mijia Cloud
|
||||
- dlg.io.mi.com
|
@ -0,0 +1,12 @@
|
||||
sniff:
|
||||
# TLS 默认如果不配置 ports 默认嗅探 443
|
||||
TLS:
|
||||
# ports: [443, 8443]
|
||||
|
||||
# 默认嗅探 80
|
||||
HTTP:
|
||||
# 需要嗅探的端口
|
||||
|
||||
ports: [80, 8080-8880]
|
||||
# 是否使用嗅探结果作为实际访问
|
||||
override-destination: true
|
618
luci-app-openclash/root/etc/openclash/game_rules/CS-GO.rules
Normal file
618
luci-app-openclash/root/etc/openclash/game_rules/CS-GO.rules
Normal file
@ -0,0 +1,618 @@
|
||||
payload:
|
||||
- 1.165.84.0/24
|
||||
- 1.165.85.0/24
|
||||
- 1.165.90.0/24
|
||||
- 5.8.200.0/24
|
||||
- 5.9.123.0/24
|
||||
- 13.73.0.0/16
|
||||
- 13.73.1.0/24
|
||||
- 13.75.114.0/24
|
||||
- 13.126.76.0/24
|
||||
- 14.18.251.72/32
|
||||
- 18.214.26.0/24
|
||||
- 24.105.28.0/24
|
||||
- 27.64.93.0/24
|
||||
- 34.235.169.0/24
|
||||
- 35.185.157.0/24
|
||||
- 35.198.200.0/24
|
||||
- 36.232.23.0/24
|
||||
- 36.232.28.0/24
|
||||
- 36.232.29.0/24
|
||||
- 37.21.10.0/24
|
||||
- 37.230.228.0/24
|
||||
- 42.113.94.0/24
|
||||
- 42.114.229.0/24
|
||||
- 43.225.199.0/24
|
||||
- 43.239.136.0/24
|
||||
- 43.241.50.0/24
|
||||
- 43.249.36.0/24
|
||||
- 45.113.137.0/24
|
||||
- 45.113.191.0/24
|
||||
- 45.119.240.0/24
|
||||
- 45.121.184.0/24
|
||||
- 45.121.185.0/24
|
||||
- 45.121.186.0/24
|
||||
- 45.121.187.0/24
|
||||
- 47.52.16.0/24
|
||||
- 47.52.17.0/24
|
||||
- 47.52.18.0/24
|
||||
- 47.52.19.0/24
|
||||
- 47.52.20.0/24
|
||||
- 47.52.21.0/24
|
||||
- 47.52.22.0/24
|
||||
- 47.52.23.0/24
|
||||
- 47.52.24.0/24
|
||||
- 47.52.25.0/24
|
||||
- 47.52.26.0/24
|
||||
- 47.52.27.0/24
|
||||
- 47.52.28.0/24
|
||||
- 47.52.29.0/24
|
||||
- 47.52.30.0/24
|
||||
- 47.52.31.0/24
|
||||
- 47.52.40.0/24
|
||||
- 47.52.41.0/24
|
||||
- 47.52.42.0/24
|
||||
- 47.52.43.0/24
|
||||
- 47.52.44.0/24
|
||||
- 47.52.45.0/24
|
||||
- 47.52.46.0/24
|
||||
- 47.52.47.0/24
|
||||
- 47.52.56.0/24
|
||||
- 47.52.57.0/24
|
||||
- 47.52.58.0/24
|
||||
- 47.52.59.0/24
|
||||
- 47.52.60.0/24
|
||||
- 47.52.61.0/24
|
||||
- 47.52.62.0/24
|
||||
- 47.52.63.0/24
|
||||
- 47.52.64.0/24
|
||||
- 47.52.65.0/24
|
||||
- 47.52.66.0/24
|
||||
- 47.52.67.0/24
|
||||
- 47.52.68.0/24
|
||||
- 47.52.69.0/24
|
||||
- 47.52.70.0/24
|
||||
- 47.52.71.0/24
|
||||
- 47.52.72.0/24
|
||||
- 47.52.73.0/24
|
||||
- 47.52.74.0/24
|
||||
- 47.52.75.0/24
|
||||
- 47.52.76.0/24
|
||||
- 47.52.77.0/24
|
||||
- 47.52.78.0/24
|
||||
- 47.52.79.0/24
|
||||
- 47.52.88.0/24
|
||||
- 47.52.89.0/24
|
||||
- 47.52.90.0/24
|
||||
- 47.52.91.0/24
|
||||
- 47.52.92.0/24
|
||||
- 47.52.93.0/24
|
||||
- 47.52.94.0/24
|
||||
- 47.52.95.0/24
|
||||
- 47.52.96.0/24
|
||||
- 47.52.97.0/24
|
||||
- 47.52.98.0/24
|
||||
- 47.52.99.0/24
|
||||
- 47.52.100.0/24
|
||||
- 47.52.101.0/24
|
||||
- 47.52.102.0/24
|
||||
- 47.52.103.0/24
|
||||
- 47.52.104.0/24
|
||||
- 47.52.105.0/24
|
||||
- 47.52.106.0/24
|
||||
- 47.52.107.0/24
|
||||
- 47.52.108.0/24
|
||||
- 47.52.109.0/24
|
||||
- 47.52.110.0/24
|
||||
- 47.52.111.0/24
|
||||
- 47.52.112.0/24
|
||||
- 47.52.113.0/24
|
||||
- 47.52.114.0/24
|
||||
- 47.52.115.0/24
|
||||
- 47.52.116.0/24
|
||||
- 47.52.117.0/24
|
||||
- 47.52.118.0/24
|
||||
- 47.52.119.0/24
|
||||
- 47.52.128.0/24
|
||||
- 47.52.129.0/24
|
||||
- 47.52.130.0/24
|
||||
- 47.52.131.0/24
|
||||
- 47.52.132.0/24
|
||||
- 47.52.133.0/24
|
||||
- 47.52.134.0/24
|
||||
- 47.52.135.0/24
|
||||
- 47.52.136.0/24
|
||||
- 47.52.137.0/24
|
||||
- 47.52.138.0/24
|
||||
- 47.52.139.0/24
|
||||
- 47.52.140.0/24
|
||||
- 47.52.141.0/24
|
||||
- 47.52.142.0/24
|
||||
- 47.52.143.0/24
|
||||
- 47.52.144.0/24
|
||||
- 47.52.145.0/24
|
||||
- 47.52.146.0/24
|
||||
- 47.52.147.0/24
|
||||
- 47.52.148.0/24
|
||||
- 47.52.149.0/24
|
||||
- 47.52.150.0/24
|
||||
- 47.52.151.0/24
|
||||
- 47.52.152.0/24
|
||||
- 47.52.153.0/24
|
||||
- 47.52.154.0/24
|
||||
- 47.52.155.0/24
|
||||
- 47.52.156.0/24
|
||||
- 47.52.157.0/24
|
||||
- 47.52.158.0/24
|
||||
- 47.52.159.0/24
|
||||
- 47.52.160.0/24
|
||||
- 47.52.161.0/24
|
||||
- 47.52.162.0/24
|
||||
- 47.52.163.0/24
|
||||
- 47.52.164.0/24
|
||||
- 47.52.165.0/24
|
||||
- 47.52.166.0/24
|
||||
- 47.52.167.0/24
|
||||
- 47.52.168.0/24
|
||||
- 47.52.169.0/24
|
||||
- 47.52.170.0/24
|
||||
- 47.52.171.0/24
|
||||
- 47.52.172.0/24
|
||||
- 47.52.173.0/24
|
||||
- 47.52.174.0/24
|
||||
- 47.52.175.0/24
|
||||
- 47.52.188.0/24
|
||||
- 47.52.190.0/24
|
||||
- 47.52.191.0/24
|
||||
- 47.52.192.0/24
|
||||
- 47.52.193.0/24
|
||||
- 47.52.194.0/24
|
||||
- 47.52.195.0/24
|
||||
- 47.52.196.0/24
|
||||
- 47.52.197.0/24
|
||||
- 47.52.198.0/24
|
||||
- 47.52.199.0/24
|
||||
- 47.52.200.0/24
|
||||
- 47.52.201.0/24
|
||||
- 47.52.202.0/24
|
||||
- 47.52.203.0/24
|
||||
- 47.52.204.0/24
|
||||
- 47.52.205.0/24
|
||||
- 47.52.206.0/24
|
||||
- 47.52.207.0/24
|
||||
- 47.52.208.0/24
|
||||
- 47.52.209.0/24
|
||||
- 47.52.224.0/24
|
||||
- 47.52.225.0/24
|
||||
- 47.52.226.0/24
|
||||
- 47.52.228.0/24
|
||||
- 47.52.230.0/24
|
||||
- 47.52.231.0/24
|
||||
- 47.52.232.0/24
|
||||
- 47.52.234.0/24
|
||||
- 47.52.235.0/24
|
||||
- 47.52.236.0/24
|
||||
- 47.52.241.0/24
|
||||
- 47.52.242.0/24
|
||||
- 47.52.244.0/24
|
||||
- 47.52.246.0/24
|
||||
- 47.52.247.0/24
|
||||
- 47.52.248.0/24
|
||||
- 47.52.249.0/24
|
||||
- 47.52.250.0/24
|
||||
- 47.52.251.0/24
|
||||
- 47.52.252.0/24
|
||||
- 47.52.253.0/24
|
||||
- 47.52.254.0/24
|
||||
- 47.52.255.0/24
|
||||
- 47.74.1.0/24
|
||||
- 47.75.3.0/24
|
||||
- 47.75.5.0/24
|
||||
- 47.75.94.0/24
|
||||
- 47.75.98.0/24
|
||||
- 47.75.143.0/24
|
||||
- 47.75.194.0/24
|
||||
- 47.75.207.0/24
|
||||
- 47.75.219.0/24
|
||||
- 47.89.8.0/24
|
||||
- 47.89.9.0/24
|
||||
- 47.89.10.0/24
|
||||
- 47.89.11.0/24
|
||||
- 47.89.12.0/24
|
||||
- 47.89.13.0/24
|
||||
- 47.89.14.0/24
|
||||
- 47.89.15.0/24
|
||||
- 47.89.16.0/24
|
||||
- 47.89.17.0/24
|
||||
- 47.89.18.0/24
|
||||
- 47.89.19.0/24
|
||||
- 47.89.20.0/24
|
||||
- 47.89.21.0/24
|
||||
- 47.89.22.0/24
|
||||
- 47.89.23.0/24
|
||||
- 47.90.8.0/24
|
||||
- 47.90.90.0/24
|
||||
- 47.90.96.0/24
|
||||
- 47.90.97.0/24
|
||||
- 47.90.98.0/24
|
||||
- 47.90.99.0/24
|
||||
- 47.90.100.0/24
|
||||
- 47.90.101.0/24
|
||||
- 47.90.102.0/24
|
||||
- 47.90.103.0/24
|
||||
- 47.90.120.0/24
|
||||
- 47.90.121.0/24
|
||||
- 47.90.122.0/24
|
||||
- 47.90.123.0/24
|
||||
- 47.90.124.0/24
|
||||
- 47.90.125.0/24
|
||||
- 47.90.126.0/24
|
||||
- 47.90.127.0/24
|
||||
- 47.90.214.0/24
|
||||
- 47.91.152.0/24
|
||||
- 47.91.153.0/24
|
||||
- 47.91.154.0/24
|
||||
- 47.91.155.0/24
|
||||
- 47.91.156.0/24
|
||||
- 47.91.157.0/24
|
||||
- 47.91.158.0/24
|
||||
- 47.91.159.0/24
|
||||
- 47.91.207.0/24
|
||||
- 47.91.208.0/24
|
||||
- 47.91.209.0/24
|
||||
- 47.91.210.0/24
|
||||
- 47.91.211.0/24
|
||||
- 47.91.212.0/24
|
||||
- 47.91.213.0/24
|
||||
- 47.91.214.0/24
|
||||
- 47.91.215.0/24
|
||||
- 47.91.216.0/24
|
||||
- 47.91.217.0/24
|
||||
- 47.91.218.0/24
|
||||
- 47.91.219.0/24
|
||||
- 47.91.220.0/24
|
||||
- 47.91.221.0/24
|
||||
- 47.91.224.0/24
|
||||
- 47.91.225.0/24
|
||||
- 47.91.226.0/24
|
||||
- 47.91.227.0/24
|
||||
- 47.91.228.0/24
|
||||
- 47.91.229.0/24
|
||||
- 47.91.230.0/24
|
||||
- 47.91.231.0/24
|
||||
- 47.91.232.0/24
|
||||
- 47.91.233.0/24
|
||||
- 47.91.234.0/24
|
||||
- 47.91.235.0/24
|
||||
- 47.91.236.0/24
|
||||
- 47.91.237.0/24
|
||||
- 47.91.238.0/24
|
||||
- 47.91.239.0/24
|
||||
- 47.91.240.0/24
|
||||
- 47.91.241.0/24
|
||||
- 47.91.242.0/24
|
||||
- 47.91.243.0/24
|
||||
- 47.91.244.0/24
|
||||
- 47.91.245.0/24
|
||||
- 47.91.246.0/24
|
||||
- 47.91.247.0/24
|
||||
- 47.91.248.0/24
|
||||
- 47.91.249.0/24
|
||||
- 47.91.250.0/24
|
||||
- 47.91.251.0/24
|
||||
- 47.91.252.0/24
|
||||
- 47.91.253.0/24
|
||||
- 47.91.254.0/24
|
||||
- 47.91.255.0/24
|
||||
- 47.96.0.0/16
|
||||
- 47.96.2.0/24
|
||||
- 47.96.3.0/24
|
||||
- 47.96.5.0/24
|
||||
- 47.96.6.0/24
|
||||
- 47.96.7.0/24
|
||||
- 47.96.8.0/24
|
||||
- 47.96.9.0/24
|
||||
- 47.96.10.0/24
|
||||
- 47.96.12.0/24
|
||||
- 47.96.13.0/24
|
||||
- 47.96.14.0/24
|
||||
- 47.99.33.0/24
|
||||
- 47.99.38.0/24
|
||||
- 47.99.44.0/24
|
||||
- 47.99.62.0/24
|
||||
- 47.99.73.0/24
|
||||
- 47.99.75.0/24
|
||||
- 47.99.76.0/24
|
||||
- 47.99.81.0/24
|
||||
- 47.99.84.0/24
|
||||
- 47.99.89.0/24
|
||||
- 47.99.90.0/24
|
||||
- 47.99.93.0/24
|
||||
- 47.99.95.0/24
|
||||
- 47.99.98.0/24
|
||||
- 47.99.99.0/24
|
||||
- 47.99.101.0/24
|
||||
- 47.99.103.0/24
|
||||
- 47.99.104.0/24
|
||||
- 47.99.107.0/24
|
||||
- 47.99.111.0/24
|
||||
- 47.99.120.0/24
|
||||
- 47.99.128.0/24
|
||||
- 47.99.159.0/24
|
||||
- 47.99.161.0/24
|
||||
- 47.99.164.0/24
|
||||
- 47.99.166.0/24
|
||||
- 47.99.169.0/24
|
||||
- 47.110.42.0/24
|
||||
- 47.244.1.0/24
|
||||
- 47.244.2.0/24
|
||||
- 47.244.3.0/24
|
||||
- 47.244.5.0/24
|
||||
- 47.244.7.0/24
|
||||
- 47.244.10.0/24
|
||||
- 47.244.11.0/24
|
||||
- 47.244.12.0/24
|
||||
- 47.244.13.0/24
|
||||
- 47.244.14.0/24
|
||||
- 47.244.15.0/24
|
||||
- 47.244.16.0/24
|
||||
- 47.244.17.0/24
|
||||
- 47.244.18.0/24
|
||||
- 47.244.19.0/24
|
||||
- 47.244.21.0/24
|
||||
- 47.244.22.0/24
|
||||
- 47.244.24.0/24
|
||||
- 47.244.25.0/24
|
||||
- 47.244.26.0/24
|
||||
- 47.244.33.0/24
|
||||
- 47.244.35.0/24
|
||||
- 47.244.36.0/24
|
||||
- 47.244.37.0/24
|
||||
- 47.244.43.0/24
|
||||
- 47.244.44.0/24
|
||||
- 47.244.48.0/24
|
||||
- 47.244.51.0/24
|
||||
- 47.244.56.0/24
|
||||
- 52.53.89.0/24
|
||||
- 52.63.114.0/24
|
||||
- 52.64.199.0/24
|
||||
- 52.90.185.0/24
|
||||
- 52.175.16.0/24
|
||||
- 52.175.31.0/24
|
||||
- 52.207.236.0/24
|
||||
- 52.229.154.0/24
|
||||
- 52.229.160.0/24
|
||||
- 52.229.161.0/24
|
||||
- 54.66.223.0/24
|
||||
- 54.158.198.0/24
|
||||
- 54.164.19.0/24
|
||||
- 54.169.27.0/24
|
||||
- 54.209.147.0/24
|
||||
- 58.153.0.0/16
|
||||
- 58.153.19.0/24
|
||||
- 58.153.171.0/24
|
||||
- 58.153.208.0/24
|
||||
- 58.153.209.0/24
|
||||
- 58.153.221.0/24
|
||||
- 58.176.80.0/24
|
||||
- 58.177.181.0/24
|
||||
- 58.215.54.0/24
|
||||
- 58.221.252.0/24
|
||||
- 59.16.249.0/24
|
||||
- 59.127.115.0/24
|
||||
- 59.149.239.0/24
|
||||
- 60.248.89.0/24
|
||||
- 61.80.89.0/24
|
||||
- 61.84.148.0/24
|
||||
- 61.155.210.0/24
|
||||
- 61.216.2.0/24
|
||||
- 61.216.34.0/24
|
||||
- 61.216.146.0/24
|
||||
- 61.238.35.0/24
|
||||
- 61.239.213.0/24
|
||||
- 61.239.223.0/24
|
||||
- 74.91.112.0/24
|
||||
- 74.201.99.0/24
|
||||
- 87.98.228.0/24
|
||||
- 88.82.185.0/24
|
||||
- 90.188.238.0/24
|
||||
- 94.245.155.0/24
|
||||
- 95.154.88.0/24
|
||||
- 95.154.113.0/24
|
||||
- 95.172.92.0/24
|
||||
- 95.183.13.0/24
|
||||
- 103.9.89.0/24
|
||||
- 103.10.124.0/24
|
||||
- 103.10.125.0/24
|
||||
- 103.16.27.0/24
|
||||
- 103.28.54.0/24
|
||||
- 103.28.55.0/24
|
||||
- 103.36.208.0/24
|
||||
- 103.44.160.0/24
|
||||
- 103.57.72.0/24
|
||||
- 103.58.149.0/24
|
||||
- 103.60.126.0/24
|
||||
- 103.62.48.0/24
|
||||
- 103.89.90.0/24
|
||||
- 103.207.36.0/24
|
||||
- 103.222.20.0/24
|
||||
- 103.231.163.0/24
|
||||
- 103.232.85.0/24
|
||||
- 103.241.165.0/24
|
||||
- 103.244.2.0/24
|
||||
- 103.254.153.0/24
|
||||
- 104.199.166.0/24
|
||||
- 104.236.115.0/24
|
||||
- 107.21.14.0/24
|
||||
- 110.42.10.0/24
|
||||
- 110.173.58.0/24
|
||||
- 111.91.236.0/24
|
||||
- 111.231.11.0/24
|
||||
- 111.253.47.0/24
|
||||
- 111.253.49.0/24
|
||||
- 111.253.50.0/24
|
||||
- 111.253.52.0/24
|
||||
- 111.253.55.0/24
|
||||
- 112.118.44.0/24
|
||||
- 112.118.193.0/24
|
||||
- 113.160.204.0/24
|
||||
- 113.190.242.0/24
|
||||
- 114.46.16.0/24
|
||||
- 114.46.20.0/24
|
||||
- 114.46.21.0/24
|
||||
- 114.46.22.0/24
|
||||
- 114.46.24.0/24
|
||||
- 114.46.30.0/24
|
||||
- 114.167.236.0/24
|
||||
- 115.230.127.0/24
|
||||
- 115.231.221.0/24
|
||||
- 115.231.223.0/24
|
||||
- 116.31.123.0/24
|
||||
- 116.49.214.0/24
|
||||
- 116.122.109.0/24
|
||||
- 116.251.223.0/24
|
||||
- 118.107.76.0/24
|
||||
- 119.28.222.0/24
|
||||
- 119.197.57.0/24
|
||||
- 119.236.132.0/24
|
||||
- 119.237.11.0/24
|
||||
- 120.72.85.0/24
|
||||
- 123.31.20.0/24
|
||||
- 123.194.52.0/24
|
||||
- 124.158.10.0/24
|
||||
- 124.228.91.0/24
|
||||
- 125.212.211.0/24
|
||||
- 125.212.226.0/24
|
||||
- 125.226.128.0/24
|
||||
- 125.253.124.0/24
|
||||
- 128.199.81.0/24
|
||||
- 132.232.7.0/24
|
||||
- 132.232.9.0/24
|
||||
- 132.232.12.0/24
|
||||
- 132.232.29.0/24
|
||||
- 132.232.51.0/24
|
||||
- 132.232.55.0/24
|
||||
- 132.232.57.0/24
|
||||
- 132.232.61.0/24
|
||||
- 132.232.62.0/24
|
||||
- 132.232.75.0/24
|
||||
- 132.232.91.0/24
|
||||
- 132.232.94.0/24
|
||||
- 132.232.99.0/24
|
||||
- 132.232.104.0/24
|
||||
- 133.130.123.0/24
|
||||
- 138.19.63.0/24
|
||||
- 139.99.9.0/24
|
||||
- 139.99.104.0/24
|
||||
- 139.99.119.0/24
|
||||
- 139.162.55.0/24
|
||||
- 146.66.152.0/24
|
||||
- 146.66.153.0/24
|
||||
- 146.66.154.0/24
|
||||
- 146.66.155.0/24
|
||||
- 146.66.156.0/24
|
||||
- 146.66.157.0/24
|
||||
- 146.66.158.0/24
|
||||
- 146.66.159.0/24
|
||||
- 150.109.40.0/24
|
||||
- 151.80.60.0/24
|
||||
- 151.80.145.0/24
|
||||
- 152.111.192.0/24
|
||||
- 153.160.25.0/24
|
||||
- 153.254.86.0/24
|
||||
- 155.133.227.0/24
|
||||
- 155.133.230.0/24
|
||||
- 155.133.232.0/24
|
||||
- 155.133.233.0/24
|
||||
- 155.133.235.0/24
|
||||
- 155.133.238.0/24
|
||||
- 155.133.239.0/24
|
||||
- 155.133.242.0/24
|
||||
- 155.133.244.0/24
|
||||
- 155.133.245.0/24
|
||||
- 155.133.246.0/24
|
||||
- 155.133.247.0/24
|
||||
- 155.133.248.0/24
|
||||
- 155.133.249.0/24
|
||||
- 155.133.252.0/24
|
||||
- 155.133.253.0/24
|
||||
- 155.133.254.0/24
|
||||
- 159.28.159.0/24
|
||||
- 161.202.44.0/24
|
||||
- 162.254.192.0/24
|
||||
- 162.254.193.0/24
|
||||
- 162.254.194.0/24
|
||||
- 162.254.195.0/24
|
||||
- 162.254.196.0/24
|
||||
- 162.254.197.0/24
|
||||
- 162.254.198.0/24
|
||||
- 162.254.199.0/24
|
||||
- 163.53.149.0/24
|
||||
- 169.254.0.0/16
|
||||
- 169.254.125.95/32
|
||||
- 169.254.10.218/32
|
||||
- 175.210.83.0/24
|
||||
- 176.215.255.0/24
|
||||
- 180.149.95.0/24
|
||||
- 180.177.178.0/24
|
||||
- 182.171.230.0/24
|
||||
- 182.176.65.0/24
|
||||
- 183.60.111.0/24
|
||||
- 183.179.66.0/24
|
||||
- 185.25.60.0/24
|
||||
- 185.25.180.0/24
|
||||
- 185.25.181.0/24
|
||||
- 185.25.182.0/24
|
||||
- 185.25.183.0/24
|
||||
- 185.37.216.0/24
|
||||
- 185.62.205.0/24
|
||||
- 185.113.141.0/24
|
||||
- 190.217.33.0/24
|
||||
- 192.69.96.0/24
|
||||
- 192.69.97.0/24
|
||||
- 193.33.176.0/24
|
||||
- 195.14.118.0/24
|
||||
- 195.201.246.0/24
|
||||
- 196.38.180.0/24
|
||||
- 197.80.200.0/24
|
||||
- 198.27.83.0/24
|
||||
- 202.21.115.0/24
|
||||
- 203.175.163.0/24
|
||||
- 203.175.164.0/24
|
||||
- 203.175.165.0/24
|
||||
- 203.175.166.0/24
|
||||
- 203.218.101.0/24
|
||||
- 205.185.194.0/24
|
||||
- 205.196.6.0/24
|
||||
- 208.64.200.0/24
|
||||
- 208.64.203.0/24
|
||||
- 208.78.164.0/24
|
||||
- 208.78.165.0/24
|
||||
- 208.78.166.0/24
|
||||
- 209.58.164.0/24
|
||||
- 209.58.168.0/24
|
||||
- 209.58.178.0/24
|
||||
- 209.58.188.0/24
|
||||
- 210.211.124.0/24
|
||||
- 211.21.37.0/24
|
||||
- 211.48.69.0/24
|
||||
- 211.75.181.0/24
|
||||
- 212.64.32.0/24
|
||||
- 216.52.148.0/24
|
||||
- 217.150.77.0/24
|
||||
- 218.250.12.0/24
|
||||
- 218.250.15.0/24
|
||||
- 218.250.113.0/24
|
||||
- 218.255.3.0/24
|
||||
- 220.80.129.0/24
|
||||
- 220.134.154.0/24
|
||||
- 220.135.180.0/24
|
||||
- 220.169.242.0/24
|
||||
- 220.170.89.0/24
|
||||
- 221.6.100.0/24
|
||||
- 222.102.95.0/24
|
||||
- 222.112.242.0/24
|
||||
- 222.186.50.0/24
|
||||
- 222.187.224.0/24
|
||||
- 224.0.0.0/4
|
||||
- 240.0.0.0/4
|
@ -0,0 +1,294 @@
|
||||
payload:
|
||||
- 2.16.0.0/16
|
||||
- 2.17.0.0/16
|
||||
- 2.18.0.0/16
|
||||
- 2.19.0.0/16
|
||||
- 2.20.0.0/16
|
||||
- 2.21.0.0/16
|
||||
- 2.22.0.0/16
|
||||
- 2.23.0.0/16
|
||||
- 8.7.0.0/16
|
||||
- 14.21.0.0/16
|
||||
- 23.0.0.0/4
|
||||
- 23.1.0.0/16
|
||||
- 23.2.0.0/16
|
||||
- 23.3.0.0/16
|
||||
- 23.4.0.0/16
|
||||
- 23.5.0.0/16
|
||||
- 23.7.0.0/16
|
||||
- 23.8.0.0/16
|
||||
- 23.9.0.0/16
|
||||
- 23.11.0.0/16
|
||||
- 23.12.0.0/16
|
||||
- 23.13.0.0/16
|
||||
- 23.14.0.0/16
|
||||
- 23.15.0.0/16
|
||||
- 23.32.0.0/16
|
||||
- 23.33.0.0/16
|
||||
- 23.34.0.0/16
|
||||
- 23.35.0.0/16
|
||||
- 23.36.0.0/16
|
||||
- 23.37.0.0/16
|
||||
- 23.38.0.0/16
|
||||
- 23.39.0.0/16
|
||||
- 23.40.0.0/16
|
||||
- 23.41.0.0/16
|
||||
- 23.42.0.0/16
|
||||
- 23.44.0.0/16
|
||||
- 23.45.0.0/16
|
||||
- 23.46.0.0/16
|
||||
- 23.48.0.0/16
|
||||
- 23.49.0.0/16
|
||||
- 23.50.0.0/16
|
||||
- 23.51.0.0/16
|
||||
- 23.52.0.0/16
|
||||
- 23.53.0.0/16
|
||||
- 23.54.0.0/16
|
||||
- 23.55.0.0/16
|
||||
- 23.56.0.0/16
|
||||
- 23.57.0.0/16
|
||||
- 23.58.0.0/16
|
||||
- 23.59.0.0/16
|
||||
- 23.60.0.0/16
|
||||
- 23.61.0.0/16
|
||||
- 23.62.0.0/16
|
||||
- 23.63.0.0/16
|
||||
- 23.64.0.0/16
|
||||
- 23.65.0.0/16
|
||||
- 23.67.0.0/16
|
||||
- 23.72.0.0/16
|
||||
- 23.73.0.0/16
|
||||
- 23.74.0.0/16
|
||||
- 23.75.0.0/16
|
||||
- 23.76.0.0/16
|
||||
- 23.77.0.0/16
|
||||
- 23.78.0.0/16
|
||||
- 23.79.0.0/16
|
||||
- 23.192.0.0/16
|
||||
- 23.193.0.0/16
|
||||
- 23.194.0.0/16
|
||||
- 23.196.0.0/16
|
||||
- 23.197.0.0/16
|
||||
- 23.198.0.0/16
|
||||
- 23.199.0.0/16
|
||||
- 23.200.0.0/16
|
||||
- 23.201.0.0/16
|
||||
- 23.202.0.0/16
|
||||
- 23.203.0.0/16
|
||||
- 23.204.0.0/16
|
||||
- 23.205.0.0/16
|
||||
- 23.206.0.0/16
|
||||
- 23.207.0.0/16
|
||||
- 23.208.0.0/16
|
||||
- 23.209.0.0/16
|
||||
- 23.210.0.0/16
|
||||
- 23.211.0.0/16
|
||||
- 23.212.0.0/16
|
||||
- 23.213.0.0/16
|
||||
- 23.214.0.0/16
|
||||
- 23.215.0.0/16
|
||||
- 23.216.0.0/16
|
||||
- 23.217.0.0/16
|
||||
- 23.218.0.0/16
|
||||
- 23.219.0.0/16
|
||||
- 23.220.0.0/16
|
||||
- 23.221.0.0/16
|
||||
- 23.222.0.0/16
|
||||
- 23.223.0.0/16
|
||||
- 31.0.0.0/4
|
||||
- 31.13.0.0/16
|
||||
- 37.10.0.0/16
|
||||
- 45.121.0.0/16
|
||||
- 45.121.184.0/24
|
||||
- 45.121.186.0/24
|
||||
- 46.0.0.0/4
|
||||
- 59.0.0.0/4
|
||||
- 60.254.0.0/16
|
||||
- 61.213.0.0/16
|
||||
- 63.146.0.0/16
|
||||
- 63.219.0.0/16
|
||||
- 63.243.0.0/16
|
||||
- 64.0.0.0/4
|
||||
- 64.124.0.0/16
|
||||
- 65.152.0.0/16
|
||||
- 65.158.0.0/16
|
||||
- 66.0.0.0/4
|
||||
- 67.0.0.0/4
|
||||
- 67.131.0.0/16
|
||||
- 69.0.0.0/4
|
||||
- 69.16.0.0/16
|
||||
- 69.63.0.0/16
|
||||
- 69.171.0.0/16
|
||||
- 69.192.0.0/16
|
||||
- 72.165.0.0/16
|
||||
- 72.246.0.0/16
|
||||
- 72.247.0.0/16
|
||||
- 74.0.0.0/4
|
||||
- 74.86.0.0/16
|
||||
- 74.201.0.0/16
|
||||
- 75.0.0.0/4
|
||||
- 75.126.0.0/16
|
||||
- 78.16.0.0/16
|
||||
- 84.53.0.0/16
|
||||
- 85.190.0.0/16
|
||||
- 88.0.0.0/4
|
||||
- 88.221.0.0/16
|
||||
- 92.122.0.0/16
|
||||
- 92.123.0.0/16
|
||||
- 95.100.0.0/16
|
||||
- 95.101.0.0/16
|
||||
- 96.0.0.0/4
|
||||
- 96.6.0.0/16
|
||||
- 96.16.0.0/16
|
||||
- 96.17.0.0/16
|
||||
- 103.10.124.0/24
|
||||
- 103.28.0.0/16
|
||||
- 103.28.54.0/24
|
||||
- 103.74.0.0/16
|
||||
- 104.0.0.0/4
|
||||
- 104.65.0.0/16
|
||||
- 104.66.0.0/16
|
||||
- 104.67.0.0/16
|
||||
- 104.68.0.0/16
|
||||
- 104.70.0.0/16
|
||||
- 104.71.0.0/16
|
||||
- 104.72.0.0/16
|
||||
- 104.73.0.0/16
|
||||
- 104.75.0.0/16
|
||||
- 104.76.0.0/16
|
||||
- 104.77.0.0/16
|
||||
- 104.79.0.0/16
|
||||
- 104.80.0.0/16
|
||||
- 104.81.0.0/16
|
||||
- 104.82.0.0/16
|
||||
- 104.83.0.0/16
|
||||
- 104.84.0.0/16
|
||||
- 104.85.0.0/16
|
||||
- 104.86.0.0/16
|
||||
- 104.87.0.0/16
|
||||
- 104.89.0.0/16
|
||||
- 104.90.0.0/16
|
||||
- 104.91.0.0/16
|
||||
- 104.92.0.0/16
|
||||
- 104.94.0.0/16
|
||||
- 104.95.0.0/16
|
||||
- 104.97.0.0/16
|
||||
- 104.98.0.0/16
|
||||
- 104.100.0.0/16
|
||||
- 104.101.0.0/16
|
||||
- 104.102.0.0/16
|
||||
- 104.103.0.0/16
|
||||
- 104.104.0.0/16
|
||||
- 104.105.0.0/16
|
||||
- 104.106.0.0/16
|
||||
- 104.107.0.0/16
|
||||
- 104.108.0.0/16
|
||||
- 104.109.0.0/16
|
||||
- 104.110.0.0/16
|
||||
- 104.111.0.0/16
|
||||
- 104.112.0.0/16
|
||||
- 104.113.0.0/16
|
||||
- 104.115.0.0/16
|
||||
- 104.116.0.0/16
|
||||
- 104.117.0.0/16
|
||||
- 104.118.0.0/16
|
||||
- 104.119.0.0/16
|
||||
- 104.120.0.0/16
|
||||
- 104.121.0.0/16
|
||||
- 104.122.0.0/16
|
||||
- 104.123.0.0/16
|
||||
- 104.124.0.0/16
|
||||
- 104.126.0.0/16
|
||||
- 104.127.0.0/16
|
||||
- 106.15.0.0/16
|
||||
- 110.45.0.0/16
|
||||
- 115.223.0.0/16
|
||||
- 117.103.0.0/16
|
||||
- 118.155.0.0/16
|
||||
- 118.214.0.0/16
|
||||
- 118.215.0.0/16
|
||||
- 120.24.184.25/32
|
||||
- 121.156.0.0/16
|
||||
- 122.252.0.0/16
|
||||
- 125.56.0.0/16
|
||||
- 125.252.0.0/16
|
||||
- 128.241.0.0/16
|
||||
- 139.175.0.0/16
|
||||
- 141.0.0.0/4
|
||||
- 146.66.0.0/16
|
||||
- 152.199.0.0/16
|
||||
- 153.254.0.0/16
|
||||
- 153.254.86.0/24
|
||||
- 155.133.0.0/16
|
||||
- 155.133.232.0/24
|
||||
- 155.133.233.0/24
|
||||
- 155.133.234.0/24
|
||||
- 155.133.235.0/24
|
||||
- 155.133.239.0/24
|
||||
- 155.133.244.0/24
|
||||
- 155.133.253.0/24
|
||||
- 155.133.254.0/24
|
||||
- 162.254.0.0/16
|
||||
- 162.254.192.0/24
|
||||
- 162.254.193.0/24
|
||||
- 162.254.194.0/24
|
||||
- 162.254.199.0/24
|
||||
- 165.254.0.0/16
|
||||
- 172.0.0.0/4
|
||||
- 172.224.0.0/16
|
||||
- 172.226.0.0/16
|
||||
- 172.227.0.0/16
|
||||
- 172.228.0.0/16
|
||||
- 172.229.0.0/16
|
||||
- 172.230.0.0/16
|
||||
- 172.231.0.0/16
|
||||
- 173.0.0.0/4
|
||||
- 173.197.0.0/16
|
||||
- 173.205.0.0/16
|
||||
- 173.222.0.0/16
|
||||
- 173.223.0.0/16
|
||||
- 173.252.0.0/16
|
||||
- 174.36.0.0/16
|
||||
- 175.99.0.0/16
|
||||
- 175.139.0.0/16
|
||||
- 180.101.192.0/24
|
||||
- 182.162.0.0/16
|
||||
- 184.0.0.0/4
|
||||
- 184.24.0.0/16
|
||||
- 184.25.0.0/16
|
||||
- 184.26.0.0/16
|
||||
- 184.29.0.0/16
|
||||
- 184.30.0.0/16
|
||||
- 184.31.0.0/16
|
||||
- 184.50.0.0/16
|
||||
- 184.51.0.0/16
|
||||
- 184.84.0.0/16
|
||||
- 184.85.0.0/16
|
||||
- 184.87.0.0/16
|
||||
- 185.25.0.0/16
|
||||
- 185.27.0.0/16
|
||||
- 185.88.0.0/16
|
||||
- 192.69.96.0/24
|
||||
- 192.81.0.0/16
|
||||
- 198.87.0.0/16
|
||||
- 198.172.0.0/16
|
||||
- 199.0.0.0/4
|
||||
- 199.239.0.0/16
|
||||
- 203.69.0.0/16
|
||||
- 203.80.149.0/24
|
||||
- 205.186.0.0/16
|
||||
- 205.196.6.0/24
|
||||
- 205.197.0.0/16
|
||||
- 208.0.0.0/4
|
||||
- 208.64.0.0/16
|
||||
- 208.64.200.0/24
|
||||
- 208.78.0.0/16
|
||||
- 208.78.164.0/24
|
||||
- 208.78.166.0/24
|
||||
- 208.78.167.0/24
|
||||
- 209.170.0.0/16
|
||||
- 210.61.0.0/16
|
||||
- 210.201.0.0/16
|
||||
- 216.3.0.0/16
|
||||
- 216.156.0.0/16
|
||||
- 223.119.0.0/16
|
133
luci-app-openclash/root/etc/openclash/game_rules/Steam.rules
Normal file
133
luci-app-openclash/root/etc/openclash/game_rules/Steam.rules
Normal file
@ -0,0 +1,133 @@
|
||||
payload:
|
||||
- 96.7.54.0/24
|
||||
- 96.17.68.0/24
|
||||
- 95.101.58.0/24
|
||||
- 92.123.234.0/24
|
||||
- 72.249.197.0/24
|
||||
- 72.247.118.0/24
|
||||
- 75.126.208.0/20
|
||||
- 69.192.4.0/24
|
||||
- 61.213.189.0/24
|
||||
- 61.213.168.0/24
|
||||
- 23.9.186.0/24
|
||||
- 23.9.179.0/24
|
||||
- 23.9.117.0/24
|
||||
- 23.77.27.0/24
|
||||
- 23.77.18.0/24
|
||||
- 23.76.210.0/24
|
||||
- 23.75.104.0/24
|
||||
- 23.67.53.0/24
|
||||
- 23.67.189.0/24
|
||||
- 23.66.135.0/24
|
||||
- 23.62.226.0/24
|
||||
- 23.61.244.0/24
|
||||
- 23.61.195.0/24
|
||||
- 23.57.66.0/24
|
||||
- 23.56.108.0/24
|
||||
- 23.55.56.0/24
|
||||
- 23.55.47.0/24
|
||||
- 23.55.37.0/24
|
||||
- 23.52.74.0/24
|
||||
- 23.52.171.0/24
|
||||
- 23.50.232.0/24
|
||||
- 23.5.229.0/24
|
||||
- 23.48.201.0/24
|
||||
- 23.47.143.0/24
|
||||
- 23.46.16.0/24
|
||||
- 23.46.147.0/24
|
||||
- 23.45.51.0/24
|
||||
- 23.45.127.0/24
|
||||
- 23.44.51.0/24
|
||||
- 23.44.172.0/24
|
||||
- 23.44.17.0/24
|
||||
- 23.43.49.0/24
|
||||
- 23.42.74.0/24
|
||||
- 23.37.126.0/24
|
||||
- 23.36.111.0/24
|
||||
- 23.34.96.0/24
|
||||
- 23.33.178.0/24
|
||||
- 23.33.151.0/24
|
||||
- 23.32.255.0/24
|
||||
- 23.32.248.0/24
|
||||
- 23.32.241.0/24
|
||||
- 23.219.172.0/24
|
||||
- 23.218.94.0/24
|
||||
- 23.218.5.0/24
|
||||
- 23.218.24.0/24
|
||||
- 23.215.188.0/24
|
||||
- 23.211.136.0/24
|
||||
- 23.211.117.0/24
|
||||
- 23.211.108.0/24
|
||||
- 23.210.215.0/24
|
||||
- 23.204.57.0/24
|
||||
- 23.204.147.0/24
|
||||
- 23.200.74.0/24
|
||||
- 23.2.16.0/24
|
||||
- 23.199.34.0/24
|
||||
- 23.198.137.0/24
|
||||
- 23.198.136.0/24
|
||||
- 23.198.103.0/24
|
||||
- 23.192.168.0/24
|
||||
- 23.192.119.0/24
|
||||
- 23.15.4.0/24
|
||||
- 23.12.40.0/24
|
||||
- 23.1.237.0/24
|
||||
- 23.1.236.0/24
|
||||
- 23.1.234.0/24
|
||||
- 23.7.208.0/20
|
||||
- 223.119.50.0/24
|
||||
- 223.119.248.0/24
|
||||
- 220.90.198.0/24
|
||||
- 219.76.10.0/24
|
||||
- 203.74.140.0/24
|
||||
- 203.69.141.0/24
|
||||
- 202.4.185.0/24
|
||||
- 2.21.98.0/24
|
||||
- 2.20.27.0/24
|
||||
- 189.6.45.0/24
|
||||
- 184.87.133.0/24
|
||||
- 184.86.250.0/24
|
||||
- 184.51.198.0/24
|
||||
- 184.51.183.0/24
|
||||
- 184.50.26.0/24
|
||||
- 184.31.165.0/24
|
||||
- 184.28.223.0/24
|
||||
- 184.28.218.0/24
|
||||
- 184.27.20.0/24
|
||||
- 184.26.194.0/24
|
||||
- 184.24.58.0/24
|
||||
- 184.150.58.0/24
|
||||
- 184.150.154.0/24
|
||||
- 175.207.14.0/24
|
||||
- 172.217.0.0/16
|
||||
- 172.232.19.0/24
|
||||
- 139.175.236.0/24
|
||||
- 125.56.201.0/24
|
||||
- 125.252.224.0/24
|
||||
- 119.56.4.0/24
|
||||
- 119.207.66.0/24
|
||||
- 119.207.64.0/24
|
||||
- 104.88.23.0/24
|
||||
- 104.84.150.0/24
|
||||
- 104.84.160.0/19
|
||||
- 104.81.21.0/24
|
||||
- 104.76.86.0/24
|
||||
- 104.76.172.0/24
|
||||
- 104.75.169.0/24
|
||||
- 104.74.47.0/24
|
||||
- 104.74.30.0/24
|
||||
- 104.74.214.0/24
|
||||
- 104.74.209.0/24
|
||||
- 104.71.139.0/24
|
||||
- 104.64.155.0/24
|
||||
- 104.250.32.0/23
|
||||
- 104.254.123.0/24
|
||||
- 104.127.4.0/24
|
||||
- 104.124.248.0/24
|
||||
- 104.124.233.0/24
|
||||
- 104.124.232.0/24
|
||||
- 104.122.6.0/24
|
||||
- 104.120.11.0/24
|
||||
- 104.116.243.0/24
|
||||
- 104.110.72.0/24
|
||||
- 153.254.86.0/24
|
4
luci-app-openclash/root/etc/openclash/rule_provider/ABC
Normal file
4
luci-app-openclash/root/etc/openclash/rule_provider/ABC
Normal file
@ -0,0 +1,4 @@
|
||||
payload:
|
||||
# > ABC
|
||||
- DOMAIN-SUFFIX,edgedatg.com
|
||||
- DOMAIN-SUFFIX,go.com
|
10
luci-app-openclash/root/etc/openclash/rule_provider/Abema_TV
Normal file
10
luci-app-openclash/root/etc/openclash/rule_provider/Abema_TV
Normal file
@ -0,0 +1,10 @@
|
||||
payload:
|
||||
# > AbemaTV
|
||||
# - USER-AGENT,AbemaTV*
|
||||
- PROCESS-NAME,tv.abema
|
||||
- DOMAIN-SUFFIX,abema.io
|
||||
- DOMAIN-SUFFIX,abema.tv
|
||||
- DOMAIN-SUFFIX,akamaized.net
|
||||
- DOMAIN-SUFFIX,ameba.jp
|
||||
- DOMAIN-SUFFIX,hayabusa.io
|
||||
- DOMAIN-KEYWORD,abematv.akamaized.net
|
45
luci-app-openclash/root/etc/openclash/rule_provider/Amazon
Normal file
45
luci-app-openclash/root/etc/openclash/rule_provider/Amazon
Normal file
@ -0,0 +1,45 @@
|
||||
payload:
|
||||
# > Amazon Prime Video
|
||||
# - USER-AGENT,InstantVideo.US*
|
||||
# - USER-AGENT,Prime%20Video*
|
||||
|
||||
- DOMAIN-KEYWORD,avoddashs
|
||||
|
||||
- DOMAIN-SUFFIX,aiv-cdn.net
|
||||
- DOMAIN-SUFFIX,aiv-delivery.net
|
||||
- DOMAIN-SUFFIX,amazonprimevideos.com
|
||||
- DOMAIN-SUFFIX,amazonvideo.cc
|
||||
- DOMAIN-SUFFIX,amazonvideo.com
|
||||
- DOMAIN-SUFFIX,amazonvideodirect.cc
|
||||
- DOMAIN-SUFFIX,atv-ext.amazon.com
|
||||
- DOMAIN-SUFFIX,atv-ext-eu.amazon.com
|
||||
- DOMAIN-SUFFIX,atv-ext-fe.amazon.com
|
||||
- DOMAIN-SUFFIX,atv-ps.amazon.com
|
||||
- DOMAIN-SUFFIX,atv-ps-eu.amazon.co.uk
|
||||
- DOMAIN-SUFFIX,atv-ps-eu.amazon.com
|
||||
- DOMAIN-SUFFIX,atv-ps-fe.amazon.co.jp
|
||||
- DOMAIN-SUFFIX,atv-ps-fe.amazon.com
|
||||
- DOMAIN-SUFFIX,fls-na.amazon.com
|
||||
- DOMAIN-SUFFIX,media-amazon.com
|
||||
- DOMAIN-SUFFIX,primevideo.cc
|
||||
- DOMAIN-SUFFIX,primevideo.com
|
||||
- DOMAIN-SUFFIX,prime-video.com
|
||||
- DOMAIN-SUFFIX,primevideo.info
|
||||
- DOMAIN-SUFFIX,primevideo.org
|
||||
- DOMAIN-SUFFIX,primevideo.tv
|
||||
- DOMAIN-SUFFIX,pv-cdn.net
|
||||
- DOMAIN-SUFFIX,video.a2z.com
|
||||
|
||||
- DOMAIN,avodmp4s3ww-a.akamaihd.net
|
||||
- DOMAIN,d1v5ir2lpwr8os.cloudfront.net
|
||||
- DOMAIN,d1y002tclu9djj.cloudfront.net
|
||||
- DOMAIN,d22qjgkvxw22r6.cloudfront.net
|
||||
- DOMAIN,d25xi40x97liuc.cloudfront.net
|
||||
- DOMAIN,dmqdd6hw24ucf.cloudfront.net
|
||||
- DOMAIN,d27xxe7juh1us6.cloudfront.net
|
||||
|
||||
- DOMAIN,dualstack.pefs-alb-266603904.eu-west-1.elb.amazonaws.com
|
||||
|
||||
# // 美区网页版需二选一走代理,如 URL-REGEX 则需 MITM www.amazon.com
|
||||
# // DOMAIN,www.amazon.com
|
||||
# URL-REGEX,^https?:\/\/www\.amazon\.com\/(Amazon-Video|gp\/video)\/
|
130
luci-app-openclash/root/etc/openclash/rule_provider/Anti_IP
Normal file
130
luci-app-openclash/root/etc/openclash/rule_provider/Anti_IP
Normal file
@ -0,0 +1,130 @@
|
||||
# 针对部分网站显示IP归属地的分流规则
|
||||
# anti-ip-attribution rule-provider.yaml v0.3.0 b38fca55691235e8b59879093163d971ce803e2e
|
||||
# https://github.com/lwd-temp/anti-ip-attribution
|
||||
# 适用于Clash的Rule Provider功能,详见https://lancellc.gitbook.io/clash/clash-config-file/rule-provider
|
||||
payload:
|
||||
- DOMAIN-SUFFIX,biliapi.net
|
||||
- DOMAIN,api.bilibili.com
|
||||
- DOMAIN,api.bilibili.tv
|
||||
- DOMAIN,app.bilibili.com
|
||||
- DOMAIN-SUFFIX,biliapi.com
|
||||
- DOMAIN,api.live.bilibili.com
|
||||
- DOMAIN,api.vc.bilibili.com
|
||||
- DOMAIN,passport.bilibili.com
|
||||
- DOMAIN,live-trace.bilibili.com
|
||||
- DOMAIN,message.bilibili.com
|
||||
- DOMAIN,cm.bilibili.com
|
||||
- DOMAIN-SUFFIX,bilibili.com
|
||||
- DOMAIN-SUFFIX,im9.com
|
||||
- DOMAIN-SUFFIX,acg.tv
|
||||
- DOMAIN-SUFFIX,biligame.com
|
||||
- IP-CIDR,203.107.1.0/24,REJECT
|
||||
- DOMAIN-SUFFIX,weibo.cn
|
||||
- DOMAIN-SUFFIX,weibo.com
|
||||
- DOMAIN-SUFFIX,weibocdn.com
|
||||
- DOMAIN-KEYWORD,weibo
|
||||
- DOMAIN,tieba.baidu.com
|
||||
- DOMAIN,tbmsg.baidu.com
|
||||
- DOMAIN,tb5.bdstatic.com
|
||||
- DOMAIN,fclog.baidu.com
|
||||
- DOMAIN,gsp0.baidu.com
|
||||
- DOMAIN,hm.baidu.com
|
||||
- DOMAIN,www.baidu.com
|
||||
- DOMAIN,tiebac.baidu.com
|
||||
- IP-CIDR,180.76.76.0/24
|
||||
- DOMAIN,httpsdns.baidu.com
|
||||
- DOMAIN,c.tieba.baidu.com
|
||||
- DOMAIN,httpdns.baidu.com
|
||||
- DOMAIN,httpdns.baidubce.com
|
||||
- DOMAIN,szshort.weixin.qq.com
|
||||
- DOMAIN,szextshort.weixin.qq.com
|
||||
- DOMAIN,szminorshort.weixin.qq.com
|
||||
- DOMAIN,mp.weixin.qq.com
|
||||
- DOMAIN-SUFFIX,zhihu.com
|
||||
- IP-CIDR,103.41.167.0/24
|
||||
- IP-CIDR,118.89.204.198/23,REJECT
|
||||
- IP-CIDR6,2402:4e00:1200:ed00:0:9089:6dac:96b6/40,REJECT
|
||||
- DOMAIN-KEYWORD,core-c-lq
|
||||
- DOMAIN-KEYWORD,core-lq
|
||||
- DOMAIN-KEYWORD,normal-c-lq
|
||||
- DOMAIN-KEYWORD,normal-lq
|
||||
- DOMAIN-KEYWORD,search-quic-lq
|
||||
- DOMAIN-KEYWORD,search-lq
|
||||
- DOMAIN-SUFFIX,zijieapi.com,DIRECT
|
||||
- DOMAIN-SUFFIX,ecombdapi.com,DIRECT
|
||||
- DOMAIN-KEYWORD,-normal-hl
|
||||
- DOMAIN-KEYWORD,-normal-c-hl
|
||||
- DOMAIN-KEYWORD,-core-c-hl
|
||||
- DOMAIN-KEYWORD,-normal-lf
|
||||
- DOMAIN-KEYWORD,-normal-c-lf
|
||||
- DOMAIN-KEYWORD,-core-c-lf
|
||||
- DOMAIN,sso.douyin.com
|
||||
- DOMAIN,www.douyin.com
|
||||
- DOMAIN-SUFFIX,snssdk.com
|
||||
- DOMAIN-SUFFIX,toutiaoapi.com
|
||||
- DOMAIN-SUFFIX,gifshow.com
|
||||
- DOMAIN-SUFFIX,ksapisrv.com
|
||||
- DOMAIN-SUFFIX,xiaohongshu.com
|
||||
- DOMAIN,keylol.com
|
||||
- DOMAIN-SUFFIX,ixigua.com
|
||||
- DOMAIN,www.wenshushu.cn
|
||||
- IP-CIDR,119.29.29.98/32,REJECT
|
||||
- DOMAIN,frodo.douban.com
|
||||
- DOMAIN,www.douban.com
|
||||
- DOMAIN,api.coolapk.com
|
||||
- DOMAIN,api.taptapdada.com
|
||||
- DOMAIN,god.gameyw.netease.com
|
||||
- DOMAIN-SUFFIX,huya.com
|
||||
- DOMAIN-SUFFIX,dongqiudi.com
|
||||
- DOMAIN,ngabbs.com
|
||||
- DOMAIN,api.vip.miui.com
|
||||
- DOMAIN-SUFFIX,music.163.com
|
||||
- DOMAIN,nstool.netease.com
|
||||
- DOMAIN,wanproxy.127.net
|
||||
- DOMAIN,mam.netease.com
|
||||
- DOMAIN,dt.netease.im
|
||||
- DOMAIN,api.iplay.163.com
|
||||
- DOMAIN,api.k.163.com
|
||||
- DOMAIN,lbs.netease.im
|
||||
- DOMAIN,wannos.127.net
|
||||
- DOMAIN,ac.dun.163.com
|
||||
- DOMAIN-SUFFIX,music.126.net
|
||||
- DOMAIN-SUFFIX,laiqukankan.com
|
||||
- DOMAIN-SUFFIX,music.ntes53.netease.com
|
||||
- IP-CIDR,101.71.154.241/32
|
||||
- IP-CIDR,103.126.92.132/32
|
||||
- IP-CIDR,103.126.92.133/32
|
||||
- IP-CIDR,112.13.119.18/32
|
||||
- IP-CIDR,112.13.122.4/32
|
||||
- IP-CIDR,115.236.118.34/32
|
||||
- IP-CIDR,115.236.121.4/32
|
||||
- IP-CIDR,45.254.48.1/32
|
||||
- IP-CIDR,59.111.160.195/32
|
||||
- IP-CIDR,59.111.19.33/32
|
||||
- IP-CIDR,59.111.19.53/32
|
||||
- DOMAIN-SUFFIX,hls3-akm.douyucdn.cn,DIRECT
|
||||
- DOMAIN-SUFFIX,hlsa-akm.douyucdn.cn,DIRECT
|
||||
- DOMAIN-SUFFIX,hls1a-akm.douyucdn.cn,DIRECT
|
||||
- DOMAIN-SUFFIX,hls3a-akm.douyucdn.cn,DIRECT
|
||||
- DOMAIN-SUFFIX,vplay1a.douyucdn.cn,DIRECT
|
||||
- DOMAIN-SUFFIX,vplay3a.douyucdn.cn,DIRECT
|
||||
- DOMAIN-SUFFIX,ws-tct.douyucdn.cn,DIRECT
|
||||
- DOMAIN-SUFFIX,akm-tct.douyucdn.cn,DIRECT
|
||||
- DOMAIN-SUFFIX,tx2play1.douyucdn.cn,DIRECT
|
||||
- DOMAIN-SUFFIX,tc-tct1.douyucdn.cn,DIRECT
|
||||
- DOMAIN-SUFFIX,wsproxy.douyu.com,DIRECT
|
||||
- DOMAIN-SUFFIX,danmuproxy.douyu.com,DIRECT
|
||||
- DOMAIN-SUFFIX,img.douyucdn.cn,DIRECT
|
||||
- DOMAIN-SUFFIX,douyucdn.cn
|
||||
- DOMAIN-SUFFIX,douyu.com
|
||||
- DOMAIN,bbs-api.mihoyo.com
|
||||
- DOMAIN,bbs-api.miyoushe.com
|
||||
- DOMAIN-SUFFIX,douban.com
|
||||
- IP-CIDR,49.233.242.15/32
|
||||
- IP-CIDR,81.70.124.99/32
|
||||
- IP-CIDR,81.70.125.19/32
|
||||
- IP-CIDR,140.143.177.206/32
|
||||
- DOMAIN,api.xiaoheihe.cn
|
||||
- DOMAIN,y.qq.com,DIRECT
|
||||
- DOMAIN-SUFFIX,y.qq.com
|
||||
- DOMAIN,zonai.skland.com
|
33
luci-app-openclash/root/etc/openclash/rule_provider/Apple
Normal file
33
luci-app-openclash/root/etc/openclash/rule_provider/Apple
Normal file
@ -0,0 +1,33 @@
|
||||
payload:
|
||||
# > Apple API
|
||||
- DOMAIN-KEYWORD,apple.com.akadns.net
|
||||
- DOMAIN-KEYWORD,icloud.com.akadns.net
|
||||
- DOMAIN-SUFFIX,aaplimg.com
|
||||
- DOMAIN-SUFFIX,apple.co
|
||||
- DOMAIN-SUFFIX,apple.com
|
||||
- DOMAIN-SUFFIX,apple-cloudkit.com
|
||||
- DOMAIN-SUFFIX,apple-mapkit.com
|
||||
- DOMAIN-SUFFIX,appsto.re
|
||||
- DOMAIN-SUFFIX,cdn-apple.com
|
||||
- DOMAIN-SUFFIX,icloud.com
|
||||
- DOMAIN-SUFFIX,icloud-content.com
|
||||
- DOMAIN-SUFFIX,itunes.com
|
||||
- DOMAIN-SUFFIX,me.com
|
||||
- DOMAIN-SUFFIX,mzstatic.com
|
||||
- IP-CIDR,17.0.0.0/8,no-resolve
|
||||
- IP-CIDR,63.92.224.0/19,no-resolve
|
||||
- IP-CIDR,65.199.22.0/23,no-resolve
|
||||
- IP-CIDR,139.178.128.0/18,no-resolve
|
||||
- IP-CIDR,144.178.0.0/19,no-resolve
|
||||
- IP-CIDR,144.178.36.0/22,no-resolve
|
||||
- IP-CIDR,144.178.48.0/20,no-resolve
|
||||
- IP-CIDR,192.35.50.0/24,no-resolve
|
||||
- IP-CIDR,198.183.17.0/24,no-resolve
|
||||
- IP-CIDR,205.180.175.0/24,no-resolve
|
||||
|
||||
# > Apple News
|
||||
- DOMAIN-SUFFIX,apple.comscoreresearch.com
|
||||
- DOMAIN-SUFFIX,apple.news
|
||||
|
||||
# > Apple Maps
|
||||
- PROCESS-NAME,com.apple.geod
|
@ -0,0 +1,16 @@
|
||||
payload:
|
||||
# > Apple Music
|
||||
# - USER-AGENT,Music*
|
||||
- PROCESS-NAME,music
|
||||
- DOMAIN-SUFFIX,applemusic.com
|
||||
- DOMAIN-SUFFIX,blobstore.apple.com
|
||||
- DOMAIN-SUFFIX,music.apple.com
|
||||
- DOMAIN,aod.itunes.apple.com
|
||||
- DOMAIN,aod-ssl.itunes.apple.com
|
||||
- DOMAIN,audio.itunes.apple.com
|
||||
- DOMAIN,audio-ssl.itunes.apple.com
|
||||
- DOMAIN,mvod.itunes.apple.com
|
||||
- DOMAIN,streamingaudio.itunes.apple.com
|
||||
|
||||
# iCloud Music Library
|
||||
- DOMAIN-SUFFIX,blobstore.apple.com
|
@ -0,0 +1,12 @@
|
||||
payload:
|
||||
# > Apple News and Apple Map TOMTOM Version
|
||||
# - USER-AGENT,AppleNews*
|
||||
# - USER-AGENT,com.apple.news*
|
||||
- DOMAIN,gspe1-ssl.ls.apple.com
|
||||
# - USER-AGENT,News*
|
||||
# - DOMAIN,apple.comscoreresearch.com
|
||||
# - DOMAIN,gateway.icloud.com
|
||||
# - DOMAIN,news-client.apple.com
|
||||
# - DOMAIN,news-edge.apple.com
|
||||
# - DOMAIN,news-events.apple.com
|
||||
# - DOMAIN-SUFFIX,apple.news
|
@ -0,0 +1,5 @@
|
||||
payload:
|
||||
# > Apple TV
|
||||
- DOMAIN,np-edge.itunes.apple.com
|
||||
- DOMAIN,play-edge.itunes.apple.com
|
||||
- DOMAIN-SUFFIX,tv.apple.com
|
@ -0,0 +1,15 @@
|
||||
payload:
|
||||
# > BBC iPlayer
|
||||
- PROCESS-NAME,bbc.iplayer.android
|
||||
- DOMAIN-KEYWORD,bbcfmt
|
||||
- DOMAIN,aod-dash-uk-live.akamaized.net
|
||||
- DOMAIN,aod-hls-uk-live.akamaized.net
|
||||
- DOMAIN,vod-dash-uk-live.akamaized.net
|
||||
- DOMAIN,vod-thumb-uk-live.akamaized.net
|
||||
- DOMAIN-SUFFIX,bbc.co
|
||||
- DOMAIN-SUFFIX,bbc.co.uk
|
||||
- DOMAIN-SUFFIX,bbc.com
|
||||
- DOMAIN-SUFFIX,bbcfmt.hs.llnwd.net
|
||||
- DOMAIN-SUFFIX,bbci.co
|
||||
- DOMAIN-SUFFIX,bbci.co.uk
|
||||
- DOMAIN-SUFFIX,bidi.net.uk
|
@ -0,0 +1,8 @@
|
||||
payload:
|
||||
# > Bahamut
|
||||
# - USER-AGENT,Anime*
|
||||
- PROCESS-NAME,tw.com.gamer.android.animad
|
||||
- DOMAIN-SUFFIX,bahamut.com.tw
|
||||
- DOMAIN-SUFFIX,gamer.com.tw
|
||||
- DOMAIN,gamer-cds.cdn.hinet.net
|
||||
- DOMAIN,gamer2-cds.cdn.hinet.net
|
16
luci-app-openclash/root/etc/openclash/rule_provider/Bilibili
Normal file
16
luci-app-openclash/root/etc/openclash/rule_provider/Bilibili
Normal file
@ -0,0 +1,16 @@
|
||||
payload:
|
||||
# > Bilibili
|
||||
# - USER-AGENT,bili*
|
||||
- DOMAIN-SUFFIX,acg.tv
|
||||
- DOMAIN-SUFFIX,acgvideo.com
|
||||
- DOMAIN-SUFFIX,b23.tv
|
||||
- DOMAIN-SUFFIX,bilibili.com
|
||||
- DOMAIN-SUFFIX,bilibili.tv
|
||||
- DOMAIN-SUFFIX,biliapi.net
|
||||
- DOMAIN-SUFFIX,biliapi.com
|
||||
- DOMAIN-SUFFIX,bilivideo.com
|
||||
- DOMAIN-SUFFIX,hdslb.com
|
||||
- DOMAIN,upos-hz-mirrorakam.akamaized.net
|
||||
# Hong Kong, Macau, Taiwan
|
||||
# - USER-AGENT,bili-inter*
|
||||
- DOMAIN,apiintl.biliapi.net
|
@ -0,0 +1,3 @@
|
||||
payload:
|
||||
# > ChatGPT
|
||||
- DOMAIN-SUFFIX,openai.com
|
366
luci-app-openclash/root/etc/openclash/rule_provider/China.yaml
Normal file
366
luci-app-openclash/root/etc/openclash/rule_provider/China.yaml
Normal file
@ -0,0 +1,366 @@
|
||||
payload:
|
||||
# China Area Network
|
||||
# > 360
|
||||
- DOMAIN-SUFFIX,qhres.com
|
||||
- DOMAIN-SUFFIX,qhimg.com
|
||||
# > Alibaba
|
||||
# USER-AGENT,%E4%BC%98%E9%85%B7*
|
||||
- DOMAIN-SUFFIX,alibaba.com
|
||||
- DOMAIN-SUFFIX,alibabausercontent.com
|
||||
- DOMAIN-SUFFIX,alicdn.com
|
||||
- DOMAIN-SUFFIX,alikunlun.com
|
||||
- DOMAIN-SUFFIX,alipay.com
|
||||
- DOMAIN-SUFFIX,amap.com
|
||||
- DOMAIN-SUFFIX,autonavi.com
|
||||
- DOMAIN-SUFFIX,dingtalk.com
|
||||
- DOMAIN-SUFFIX,mxhichina.com
|
||||
- DOMAIN-SUFFIX,soku.com
|
||||
- DOMAIN-SUFFIX,taobao.com
|
||||
- DOMAIN-SUFFIX,tmall.com
|
||||
- DOMAIN-SUFFIX,tmall.hk
|
||||
- DOMAIN-SUFFIX,ykimg.com
|
||||
- DOMAIN-SUFFIX,youku.com
|
||||
- DOMAIN-SUFFIX,xiami.com
|
||||
- DOMAIN-SUFFIX,xiami.net
|
||||
# > Apple
|
||||
- DOMAIN-SUFFIX,aaplimg.com
|
||||
- DOMAIN-SUFFIX,apple.co
|
||||
- DOMAIN-SUFFIX,apple.com
|
||||
- DOMAIN-SUFFIX,apple-cloudkit.com
|
||||
- DOMAIN-SUFFIX,appstore.com
|
||||
- DOMAIN-SUFFIX,cdn-apple.com
|
||||
- DOMAIN-SUFFIX,icloud.com
|
||||
- DOMAIN-SUFFIX,icloud-content.com
|
||||
- DOMAIN-SUFFIX,me.com
|
||||
- DOMAIN-SUFFIX,mzstatic.com
|
||||
# - DOMAIN-KEYWORD,apple.com.akadns.net
|
||||
# - DOMAIN-KEYWORD,icloud.com.akadns.net
|
||||
# > Baidu
|
||||
- DOMAIN-SUFFIX,baidu.com
|
||||
- DOMAIN-SUFFIX,baidubcr.com
|
||||
- DOMAIN-SUFFIX,baidupan.com
|
||||
- DOMAIN-SUFFIX,baidupcs.com
|
||||
- DOMAIN-SUFFIX,bdimg.com
|
||||
- DOMAIN-SUFFIX,bdstatic.com
|
||||
- DOMAIN-SUFFIX,yunjiasu-cdn.net
|
||||
# > Battle
|
||||
- DOMAIN-SUFFIX,battle.net
|
||||
- DOMAIN-SUFFIX,blizzard.com
|
||||
# > bilibili
|
||||
- DOMAIN-SUFFIX,acgvideo.com
|
||||
- DOMAIN-SUFFIX,biliapi.com
|
||||
- DOMAIN-SUFFIX,biliapi.net
|
||||
- DOMAIN-SUFFIX,bilibili.com
|
||||
- DOMAIN-SUFFIX,bilibili.tv
|
||||
- DOMAIN-SUFFIX,hdslb.com
|
||||
# > ByteDance
|
||||
- DOMAIN-SUFFIX,feiliao.com
|
||||
- DOMAIN-SUFFIX,pstatp.com
|
||||
- DOMAIN-SUFFIX,snssdk.com
|
||||
- DOMAIN-SUFFIX,iesdouyin.com
|
||||
- DOMAIN-SUFFIX,toutiao.com
|
||||
# > CCTV
|
||||
- DOMAIN-SUFFIX,cctv.com
|
||||
- DOMAIN-SUFFIX,cctvpic.com
|
||||
- DOMAIN-SUFFIX,livechina.com
|
||||
# > ChinaTelecom
|
||||
- DOMAIN-SUFFIX,21cn.com
|
||||
# > DiDi
|
||||
- DOMAIN-SUFFIX,didialift.com
|
||||
- DOMAIN-SUFFIX,didiglobal.com
|
||||
- DOMAIN-SUFFIX,udache.com
|
||||
# > HunanTV
|
||||
- DOMAIN-SUFFIX,hitv.com
|
||||
- DOMAIN-SUFFIX,mgtv.com
|
||||
# > iQiyi
|
||||
- DOMAIN-SUFFIX,iqiyi.com
|
||||
- DOMAIN-SUFFIX,iqiyipic.com
|
||||
- DOMAIN-SUFFIX,71.am
|
||||
# > JD
|
||||
- DOMAIN-SUFFIX,jd.com
|
||||
- DOMAIN-SUFFIX,jd.hk
|
||||
- DOMAIN-SUFFIX,jdpay.com
|
||||
- DOMAIN-SUFFIX,360buyimg.com
|
||||
# > Kingsoft
|
||||
- DOMAIN-SUFFIX,iciba.com
|
||||
- DOMAIN-SUFFIX,ksosoft.com
|
||||
# > Meitu
|
||||
- DOMAIN-SUFFIX,meitu.com
|
||||
- DOMAIN-SUFFIX,meitudata.com
|
||||
- DOMAIN-SUFFIX,meitustat.com
|
||||
- DOMAIN-SUFFIX,meipai.com
|
||||
# > Meituan
|
||||
- DOMAIN-SUFFIX,dianping.com
|
||||
- DOMAIN-SUFFIX,dpfile.com
|
||||
- DOMAIN-SUFFIX,meituan.com
|
||||
- DOMAIN-SUFFIX,meituan.net
|
||||
# > MI
|
||||
- DOMAIN-SUFFIX,duokan.com
|
||||
- DOMAIN-SUFFIX,mi.com
|
||||
- DOMAIN-SUFFIX,mi-img.com
|
||||
- DOMAIN-SUFFIX,miui.com
|
||||
- DOMAIN-SUFFIX,miwifi.com
|
||||
- DOMAIN-SUFFIX,xiaomi.com
|
||||
- DOMAIN-SUFFIX,xiaomi.net
|
||||
# > Microsoft
|
||||
# - DOMAIN-SUFFIX,microsoft.com
|
||||
# - DOMAIN-SUFFIX,msecnd.net
|
||||
# - DOMAIN-SUFFIX,office.com
|
||||
# - DOMAIN-SUFFIX,office365.com
|
||||
# - DOMAIN-SUFFIX,s-microsoft.com
|
||||
# - DOMAIN-SUFFIX,windows.com
|
||||
- DOMAIN-SUFFIX,visualstudio.com
|
||||
# >> Microsoft Software Download
|
||||
# - DOMAIN,software-download.microsoft.com
|
||||
# - DOMAIN-KEYWORD,-microsoft-com.akamaized.net
|
||||
# >> OneDrive
|
||||
# - DOMAIN-SUFFIX,1drv.com
|
||||
# - DOMAIN-SUFFIX,storage.live.com
|
||||
# >> Outlook
|
||||
- DOMAIN-SUFFIX,hotmail.com
|
||||
- DOMAIN-SUFFIX,outlook.com
|
||||
- DOMAIN,outlook.office365.com
|
||||
- DOMAIN,smtp.office365.com
|
||||
# >> Windows Server Update Services
|
||||
- DOMAIN-SUFFIX,dl.delivery.mp.microsoft.com
|
||||
- DOMAIN-SUFFIX,update.microsoft.com
|
||||
- DOMAIN-SUFFIX,windowsupdate.com
|
||||
- DOMAIN-SUFFIX,windowsupdate.microsoft.com
|
||||
- DOMAIN,download.microsoft.com
|
||||
- DOMAIN,wustat.windows.com
|
||||
- DOMAIN,ntservicepack.microsoft.com
|
||||
# > NetEase
|
||||
# USER-AGENT,NeteaseMusic*
|
||||
# USER-AGENT,%E7%BD%91%E6%98%93%E4%BA%91%E9%9F%B3%E4%B9%90*
|
||||
- DOMAIN-SUFFIX,163.com
|
||||
- DOMAIN-SUFFIX,126.com
|
||||
- DOMAIN-SUFFIX,126.net
|
||||
- DOMAIN-SUFFIX,127.net
|
||||
- DOMAIN-SUFFIX,163yun.com
|
||||
- DOMAIN-SUFFIX,lofter.com
|
||||
- DOMAIN-SUFFIX,netease.com
|
||||
- DOMAIN-SUFFIX,ydstatic.com
|
||||
- DOMAIN-SUFFIX,youdao.com
|
||||
# > PayPal
|
||||
# USER-AGENT,PayPal*
|
||||
- DOMAIN-SUFFIX,paypal.com
|
||||
- DOMAIN-SUFFIX,paypal.me
|
||||
- DOMAIN-SUFFIX,paypalobjects.com
|
||||
# > Sina
|
||||
- DOMAIN-SUFFIX,sina.com
|
||||
- DOMAIN-SUFFIX,weibo.com
|
||||
- DOMAIN-SUFFIX,weibocdn.com
|
||||
# > Sohu
|
||||
- DOMAIN-SUFFIX,sohu.com
|
||||
- DOMAIN-SUFFIX,sohucs.com
|
||||
- DOMAIN-SUFFIX,sohu-inc.com
|
||||
- DOMAIN-SUFFIX,v-56.com
|
||||
# > Sogo
|
||||
- DOMAIN-SUFFIX,sogo.com
|
||||
- DOMAIN-SUFFIX,sogou.com
|
||||
- DOMAIN-SUFFIX,sogoucdn.com
|
||||
# > Steam
|
||||
- DOMAIN-SUFFIX,steamcontent.com
|
||||
- DOMAIN-SUFFIX,steampowered.com
|
||||
- DOMAIN-SUFFIX,steamstatic.com
|
||||
# > Tencent
|
||||
# USER-AGENT,MicroMessenger*
|
||||
# USER-AGENT,WeChat*
|
||||
# USER-AGENT,%E4%BC%81%E4%B8%9A%E5%BE%AE%E4%BF%A1*
|
||||
- DOMAIN-SUFFIX,gtimg.com
|
||||
- DOMAIN-SUFFIX,idqqimg.com
|
||||
- DOMAIN-SUFFIX,igamecj.com
|
||||
- DOMAIN-SUFFIX,myapp.com
|
||||
- DOMAIN-SUFFIX,myqcloud.com
|
||||
- DOMAIN-SUFFIX,qq.com
|
||||
- DOMAIN-SUFFIX,qqmail.com
|
||||
- DOMAIN-SUFFIX,servicewechat.com
|
||||
- DOMAIN-SUFFIX,tencent.com
|
||||
- DOMAIN-SUFFIX,tencent-cloud.com
|
||||
- DOMAIN-SUFFIX,tencent-cloud.net
|
||||
- DOMAIN-SUFFIX,tenpay.com
|
||||
- DOMAIN-SUFFIX,wechat.com
|
||||
- DOMAIN,file-igamecj.akamaized.net
|
||||
- IP-CIDR,182.254.116.0/24,no-resolve
|
||||
- IP-CIDR,203.205.254.0/23,no-resolve
|
||||
# > Content Delivery Network
|
||||
- DOMAIN-SUFFIX,ccgslb.com
|
||||
- DOMAIN-SUFFIX,ccgslb.net
|
||||
- DOMAIN-SUFFIX,chinanetcenter.com
|
||||
- DOMAIN-SUFFIX,meixincdn.com
|
||||
- DOMAIN-SUFFIX,ourdvs.com
|
||||
- DOMAIN-SUFFIX,staticdn.net
|
||||
- DOMAIN-SUFFIX,wangsu.com
|
||||
# > IP Query
|
||||
- DOMAIN-SUFFIX,ipip.net
|
||||
- DOMAIN-SUFFIX,ip.la
|
||||
- DOMAIN-SUFFIX,ip.sb
|
||||
- DOMAIN-SUFFIX,ip-cdn.com
|
||||
- DOMAIN-SUFFIX,ipv6-test.com
|
||||
- DOMAIN-SUFFIX,myip.la
|
||||
- DOMAIN-SUFFIX,test-ipv6.com
|
||||
- DOMAIN-SUFFIX,whatismyip.com
|
||||
- DOMAIN,ip.istatmenus.app
|
||||
- DOMAIN,sms.imagetasks.com
|
||||
# > Speed Test
|
||||
# - DOMAIN-SUFFIX,speedtest.net
|
||||
- DOMAIN-SUFFIX,netspeedtestmaster.com
|
||||
- DOMAIN,speedtest.macpaw.com
|
||||
# > Private Tracker
|
||||
- DOMAIN-SUFFIX,acg.rip
|
||||
- DOMAIN-SUFFIX,animebytes.tv
|
||||
- DOMAIN-SUFFIX,awesome-hd.me
|
||||
- DOMAIN-SUFFIX,broadcasthe.net
|
||||
- DOMAIN-SUFFIX,chdbits.co
|
||||
- DOMAIN-SUFFIX,classix-unlimited.co.uk
|
||||
- DOMAIN-SUFFIX,comicat.org
|
||||
- DOMAIN-SUFFIX,empornium.me
|
||||
- DOMAIN-SUFFIX,gazellegames.net
|
||||
- DOMAIN-SUFFIX,hdbits.org
|
||||
- DOMAIN-SUFFIX,hdchina.org
|
||||
- DOMAIN-SUFFIX,hddolby.com
|
||||
- DOMAIN-SUFFIX,hdhome.org
|
||||
- DOMAIN-SUFFIX,hdsky.me
|
||||
- DOMAIN-SUFFIX,icetorrent.org
|
||||
- DOMAIN-SUFFIX,jpopsuki.eu
|
||||
- DOMAIN-SUFFIX,keepfrds.com
|
||||
- DOMAIN-SUFFIX,madsrevolution.net
|
||||
- DOMAIN-SUFFIX,morethan.tv
|
||||
- DOMAIN-SUFFIX,m-team.cc
|
||||
- DOMAIN-SUFFIX,myanonamouse.net
|
||||
- DOMAIN-SUFFIX,nanyangpt.com
|
||||
- DOMAIN-SUFFIX,ncore.cc
|
||||
- DOMAIN-SUFFIX,open.cd
|
||||
- DOMAIN-SUFFIX,ourbits.club
|
||||
- DOMAIN-SUFFIX,passthepopcorn.me
|
||||
- DOMAIN-SUFFIX,privatehd.to
|
||||
- DOMAIN-SUFFIX,pterclub.com
|
||||
- DOMAIN-SUFFIX,redacted.ch
|
||||
- DOMAIN-SUFFIX,springsunday.net
|
||||
- DOMAIN-SUFFIX,tjupt.org
|
||||
- DOMAIN-SUFFIX,totheglory.im
|
||||
# > Other
|
||||
- DOMAIN-SUFFIX,cn
|
||||
- DOMAIN-SUFFIX,115.com
|
||||
- DOMAIN-SUFFIX,360in.com
|
||||
- DOMAIN-SUFFIX,51ym.me
|
||||
- DOMAIN-SUFFIX,8686c.com
|
||||
- DOMAIN-SUFFIX,99.com
|
||||
- DOMAIN-SUFFIX,abchina.com
|
||||
- DOMAIN-SUFFIX,accuweather.com
|
||||
- DOMAIN-SUFFIX,agora.io
|
||||
- DOMAIN-SUFFIX,aicoinstorge.com
|
||||
- DOMAIN-SUFFIX,air-matters.com
|
||||
- DOMAIN-SUFFIX,air-matters.io
|
||||
- DOMAIN-SUFFIX,aixifan.com
|
||||
- DOMAIN-SUFFIX,amd.com
|
||||
- DOMAIN-SUFFIX,b612.net
|
||||
- DOMAIN-SUFFIX,bdatu.com
|
||||
- DOMAIN-SUFFIX,beitaichufang.com
|
||||
- DOMAIN-SUFFIX,booking.com
|
||||
- DOMAIN-SUFFIX,bstatic.com
|
||||
- DOMAIN-SUFFIX,cailianpress.com
|
||||
- DOMAIN-SUFFIX,camera360.com
|
||||
- DOMAIN-SUFFIX,chaoxing.com
|
||||
- DOMAIN-SUFFIX,chaoxing.com
|
||||
- DOMAIN-SUFFIX,chinaso.com
|
||||
- DOMAIN-SUFFIX,chuimg.com
|
||||
- DOMAIN-SUFFIX,chunyu.mobi
|
||||
- DOMAIN-SUFFIX,cibntv.net
|
||||
- DOMAIN-SUFFIX,cmbchina.com
|
||||
- DOMAIN-SUFFIX,cmbimg.com
|
||||
- DOMAIN-SUFFIX,coolapk.com
|
||||
- DOMAIN-SUFFIX,ctrip.com
|
||||
- DOMAIN-SUFFIX,dfcfw.com
|
||||
- DOMAIN-SUFFIX,dji.net
|
||||
- DOMAIN-SUFFIX,docschina.org
|
||||
- DOMAIN-SUFFIX,douban.com
|
||||
- DOMAIN-SUFFIX,doubanio.com
|
||||
- DOMAIN-SUFFIX,douyu.com
|
||||
- DOMAIN-SUFFIX,dxycdn.com
|
||||
- DOMAIN-SUFFIX,dytt8.net
|
||||
- DOMAIN-SUFFIX,eastmoney.com
|
||||
- DOMAIN-SUFFIX,eudic.net
|
||||
- DOMAIN-SUFFIX,feng.com
|
||||
- DOMAIN-SUFFIX,fengkongcloud.com
|
||||
- DOMAIN-SUFFIX,frdic.com
|
||||
- DOMAIN-SUFFIX,futu5.com
|
||||
- DOMAIN-SUFFIX,futunn.com
|
||||
- DOMAIN-SUFFIX,gandi.net
|
||||
- DOMAIN-SUFFIX,gcores.com
|
||||
- DOMAIN-SUFFIX,geilicdn.com
|
||||
- DOMAIN-SUFFIX,getpricetag.com
|
||||
- DOMAIN-SUFFIX,gifshow.com
|
||||
- DOMAIN-SUFFIX,godic.net
|
||||
- DOMAIN-SUFFIX,heweather.net
|
||||
- DOMAIN-SUFFIX,hicloud.com
|
||||
- DOMAIN-SUFFIX,hongxiu.com
|
||||
- DOMAIN-SUFFIX,hostbuf.com
|
||||
- DOMAIN-SUFFIX,huxiucdn.com
|
||||
- DOMAIN-SUFFIX,huya.com
|
||||
- DOMAIN-SUFFIX,ibm.com
|
||||
- DOMAIN-SUFFIX,infinitynewtab.com
|
||||
- DOMAIN-SUFFIX,ithome.com
|
||||
- DOMAIN-SUFFIX,java.com
|
||||
- DOMAIN-SUFFIX,jianguoyun.com
|
||||
- DOMAIN-SUFFIX,jianshu.com
|
||||
- DOMAIN-SUFFIX,jianshu.io
|
||||
- DOMAIN-SUFFIX,jidian.im
|
||||
- DOMAIN-SUFFIX,kaiyanapp.com
|
||||
- DOMAIN-SUFFIX,kaspersky-labs.com
|
||||
- DOMAIN-SUFFIX,keepcdn.com
|
||||
- DOMAIN-SUFFIX,kkmh.com
|
||||
- DOMAIN-SUFFIX,lanzous.com
|
||||
- DOMAIN-SUFFIX,luojilab.com
|
||||
- DOMAIN-SUFFIX,maoyan.com
|
||||
- DOMAIN-SUFFIX,maoyun.tv
|
||||
- DOMAIN-SUFFIX,mls-cdn.com
|
||||
- DOMAIN-SUFFIX,mobike.com
|
||||
- DOMAIN-SUFFIX,moke.com
|
||||
- DOMAIN-SUFFIX,mubu.com
|
||||
- DOMAIN-SUFFIX,myzaker.com
|
||||
- DOMAIN-SUFFIX,nim-lang-cn.org
|
||||
- DOMAIN-SUFFIX,ntp.org
|
||||
- DOMAIN-SUFFIX,nvidia.com
|
||||
- DOMAIN-SUFFIX,oracle.com
|
||||
- DOMAIN-SUFFIX,plex.tv
|
||||
- DOMAIN-SUFFIX,qidian.com
|
||||
- DOMAIN-SUFFIX,qweather.com
|
||||
- DOMAIN-SUFFIX,qyer.com
|
||||
- DOMAIN-SUFFIX,qyerstatic.com
|
||||
- DOMAIN-SUFFIX,raychase.net
|
||||
- DOMAIN-SUFFIX,ronghub.com
|
||||
- DOMAIN-SUFFIX,ruguoapp.com
|
||||
- DOMAIN-SUFFIX,sankuai.com
|
||||
- DOMAIN-SUFFIX,scomper.me
|
||||
- DOMAIN-SUFFIX,shouqianba.com
|
||||
- DOMAIN-SUFFIX,sm.ms
|
||||
- DOMAIN-SUFFIX,smzdm.com
|
||||
- DOMAIN-SUFFIX,snapdrop.net
|
||||
- DOMAIN-SUFFIX,snwx.com
|
||||
- DOMAIN-SUFFIX,s-reader.com
|
||||
- DOMAIN-SUFFIX,sspai.com
|
||||
- DOMAIN-SUFFIX,subhd.tv
|
||||
- DOMAIN-SUFFIX,takungpao.com
|
||||
- DOMAIN-SUFFIX,teamviewer.com
|
||||
- DOMAIN-SUFFIX,tianyancha.com
|
||||
- DOMAIN-SUFFIX,tophub.today
|
||||
- DOMAIN-SUFFIX,uning.com
|
||||
- DOMAIN-SUFFIX,weather.com
|
||||
- DOMAIN-SUFFIX,weico.cc
|
||||
- DOMAIN-SUFFIX,weidian.com
|
||||
- DOMAIN-SUFFIX,xiachufang.com
|
||||
- DOMAIN-SUFFIX,xiaoka.tv
|
||||
- DOMAIN-SUFFIX,ximalaya.com
|
||||
- DOMAIN-SUFFIX,xinhuanet.com
|
||||
- DOMAIN-SUFFIX,xmcdn.com
|
||||
- DOMAIN-SUFFIX,yangkeduo.com
|
||||
- DOMAIN-SUFFIX,yizhibo.com
|
||||
- DOMAIN-SUFFIX,zhangzishi.cc
|
||||
- DOMAIN-SUFFIX,zhihu.com
|
||||
- DOMAIN-SUFFIX,zhihuishu.com
|
||||
- DOMAIN-SUFFIX,zhimg.com
|
||||
- DOMAIN-SUFFIX,zhuihd.com
|
||||
|
||||
- DOMAIN,download.jetbrains.com
|
||||
- DOMAIN,images-cn.ssl-images-amazon.com
|
6126
luci-app-openclash/root/etc/openclash/rule_provider/ChinaIP.yaml
Normal file
6126
luci-app-openclash/root/etc/openclash/rule_provider/ChinaIP.yaml
Normal file
File diff suppressed because it is too large
Load Diff
300
luci-app-openclash/root/etc/openclash/rule_provider/Crypto
Normal file
300
luci-app-openclash/root/etc/openclash/rule_provider/Crypto
Normal file
@ -0,0 +1,300 @@
|
||||
payload:
|
||||
# > Forum
|
||||
- DOMAIN-SUFFIX,bitcointalk.org
|
||||
|
||||
# > Exchange
|
||||
- DOMAIN-SUFFIX,aex.com
|
||||
- DOMAIN-SUFFIX,bibox.com
|
||||
- DOMAIN-SUFFIX,bitfinex.com
|
||||
- DOMAIN-SUFFIX,bithumb.com
|
||||
- DOMAIN-SUFFIX,bitmex.com
|
||||
- DOMAIN-SUFFIX,bitstamp.net
|
||||
- DOMAIN-SUFFIX,bittrex.com
|
||||
- DOMAIN-SUFFIX,bybit.com
|
||||
- DOMAIN-SUFFIX,coinbase.com
|
||||
- DOMAIN-SUFFIX,coincheck.com
|
||||
- DOMAIN-SUFFIX,coinone.co.kr
|
||||
- DOMAIN-SUFFIX,gemini.com
|
||||
- DOMAIN-SUFFIX,korbit.co.kr
|
||||
- DOMAIN-SUFFIX,kraken.com
|
||||
- DOMAIN-SUFFIX,kucoin.com
|
||||
- DOMAIN-SUFFIX,liquid.com
|
||||
- DOMAIN-SUFFIX,poloniex.com
|
||||
- DOMAIN-SUFFIX,bitbank.cc
|
||||
- DOMAIN-SUFFIX,bitcoin.org
|
||||
- DOMAIN-SUFFIX,bitquick.co
|
||||
- DOMAIN-SUFFIX,btcbox.co.jp
|
||||
- DOMAIN-SUFFIX,cex.io
|
||||
- DOMAIN-SUFFIX,dogecoin.com
|
||||
- DOMAIN-SUFFIX,paxful.com
|
||||
- DOMAIN-SUFFIX,tether.to
|
||||
- DOMAIN-SUFFIX,dydx.exchange
|
||||
- DOMAIN-SUFFIX,solana.com
|
||||
- DOMAIN-SUFFIX,avax.network
|
||||
- DOMAIN-SUFFIX,optimism.io
|
||||
- DOMAIN-SUFFIX,arbitrum.io
|
||||
- DOMAIN-SUFFIX,poly.network
|
||||
- DOMAIN-SUFFIX,zkscan.io
|
||||
- DOMAIN-SUFFIX,zksync.io
|
||||
- DOMAIN-SUFFIX,boba.network
|
||||
|
||||
# > Binance
|
||||
- DOMAIN-SUFFIX,binance.cc
|
||||
- DOMAIN-SUFFIX,binance.cloud
|
||||
- DOMAIN-SUFFIX,binance.com
|
||||
- DOMAIN-SUFFIX,binance.im
|
||||
- DOMAIN-SUFFIX,binance.me
|
||||
- DOMAIN-SUFFIX,binance.us
|
||||
- DOMAIN-SUFFIX,bnappzh.co
|
||||
- DOMAIN-SUFFIX,bnappzh.com
|
||||
- DOMAIN-SUFFIX,bnbstatic.com
|
||||
- DOMAIN-SUFFIX,bntrace.com
|
||||
- DOMAIN-SUFFIX,binance.charity
|
||||
- DOMAIN-SUFFIX,binance.co
|
||||
- DOMAIN-SUFFIX,binance.info
|
||||
- DOMAIN-SUFFIX,binance.net
|
||||
- DOMAIN-SUFFIX,binance.org
|
||||
- DOMAIN-SUFFIX,binance.vision
|
||||
- DOMAIN-SUFFIX,binanceapi.com
|
||||
- DOMAIN-SUFFIX,binancezh.be
|
||||
- DOMAIN-SUFFIX,binancezh.biz
|
||||
- DOMAIN-SUFFIX,binancezh.cc
|
||||
- DOMAIN-SUFFIX,binancezh.co
|
||||
- DOMAIN-SUFFIX,binancezh.com
|
||||
- DOMAIN-SUFFIX,binancezh.info
|
||||
- DOMAIN-SUFFIX,binancezh.ink
|
||||
- DOMAIN-SUFFIX,binancezh.kim
|
||||
- DOMAIN-SUFFIX,binancezh.link
|
||||
- DOMAIN-SUFFIX,binancezh.live
|
||||
- DOMAIN-SUFFIX,binancezh.mobi
|
||||
- DOMAIN-SUFFIX,binancezh.net
|
||||
- DOMAIN-SUFFIX,binancezh.pro
|
||||
- DOMAIN-SUFFIX,binancezh.sh
|
||||
- DOMAIN-SUFFIX,binancezh.top
|
||||
- DOMAIN-SUFFIX,bnappzh.mobi
|
||||
- DOMAIN-SUFFIX,bsc.getblock.io
|
||||
- DOMAIN-SUFFIX,bscscan.com
|
||||
- PROCESS-NAME,Binance.exe
|
||||
- DOMAIN-KEYWORD,binance
|
||||
|
||||
# > Huobi
|
||||
- DOMAIN-SUFFIX,hbabit.com
|
||||
- DOMAIN-SUFFIX,hbfile.net
|
||||
- DOMAIN-SUFFIX,huobi.com
|
||||
- DOMAIN-SUFFIX,huobi.me
|
||||
- DOMAIN-SUFFIX,huobi.pro
|
||||
- DOMAIN-SUFFIX,huobi.sc
|
||||
- DOMAIN-SUFFIX,huobiasia.vip
|
||||
- DOMAIN-SUFFIX,huobigroup.com
|
||||
- DOMAIN-SUFFIX,huobitoken.com
|
||||
- DOMAIN-SUFFIX,heco-scan.com
|
||||
- DOMAIN-SUFFIX,hecoview.com
|
||||
- DOMAIN-SUFFIX,hbfile.net
|
||||
- DOMAIN-SUFFIX,huobi.br.com
|
||||
- DOMAIN-SUFFIX,bitderiv.com
|
||||
- DOMAIN-SUFFIX,hecochain.com
|
||||
- DOMAIN-SUFFIX,huobi.ws
|
||||
- DOMAIN-SUFFIX,huobi.ug
|
||||
- DOMAIN-SUFFIX,huobi.co.ma
|
||||
- DOMAIN-SUFFIX,huobi.br.com
|
||||
- PROCESS-NAME,Huobi.exe
|
||||
- DOMAIN-KEYWORD,huobi
|
||||
|
||||
# > OKX
|
||||
- DOMAIN-SUFFIX,okex.com
|
||||
- DOMAIN-SUFFIX,okx.com
|
||||
- PROCESS-NAME,OKX.exe
|
||||
- DOMAIN-KEYWORD,okx
|
||||
|
||||
# > asproex
|
||||
- DOMAIN-SUFFIX,asproex.com
|
||||
- DOMAIN-SUFFIX,asproexapi.com
|
||||
|
||||
# > bitflyer
|
||||
- DOMAIN-SUFFIX,bitflyer.com
|
||||
- DOMAIN-SUFFIX,bitflyer.jp
|
||||
|
||||
# > bitsquare
|
||||
- DOMAIN-SUFFIX,bisq.io
|
||||
- DOMAIN-SUFFIX,bisq.network
|
||||
- DOMAIN-SUFFIX,bitsquare.io
|
||||
|
||||
# > coinone
|
||||
- DOMAIN-SUFFIX,coinone.co.kr
|
||||
- DOMAIN-SUFFIX,coinonecore.com
|
||||
- DOMAIN-SUFFIX,coinonecorp.com
|
||||
|
||||
# > ethereum
|
||||
- DOMAIN-SUFFIX,devcon.org
|
||||
- DOMAIN-SUFFIX,ethereum.foundation
|
||||
- DOMAIN-SUFFIX,ethereum.org
|
||||
- DOMAIN-SUFFIX,etherscan.io
|
||||
- DOMAIN-SUFFIX,nansen.ai
|
||||
- DOMAIN-SUFFIX,ethgasstation.info
|
||||
- DOMAIN-SUFFIX,watchtheburn.com
|
||||
- DOMAIN-SUFFIX,flashbots.net
|
||||
- DOMAIN-SUFFIX,cryptofees.info
|
||||
- DOMAIN-SUFFIX,etherscan.io
|
||||
- DOMAIN-SUFFIX,ethereum-magicians.org
|
||||
- DOMAIN-SUFFIX,vitalik.ca
|
||||
- DOMAIN-SUFFIX,ethfans.org
|
||||
- DOMAIN-SUFFIX,ethereum.cn
|
||||
- DOMAIN-SUFFIX,ethereum.stackexchange.com
|
||||
- DOMAIN-SUFFIX,etherscan.com
|
||||
- DOMAIN-SUFFIX,parity.io
|
||||
- DOMAIN-SUFFIX,ethernodes.org
|
||||
|
||||
# > localbitcoins
|
||||
- DOMAIN-SUFFIX,localbitcoins.com
|
||||
- DOMAIN-SUFFIX,localbitcoinschain.com
|
||||
|
||||
# > zb
|
||||
- DOMAIN-SUFFIX,zb.app
|
||||
- DOMAIN-SUFFIX,zb.com
|
||||
- DOMAIN-SUFFIX,zb.io
|
||||
- DOMAIN-SUFFIX,zb.live
|
||||
|
||||
# > Analysis
|
||||
- DOMAIN-SUFFIX,aicoin.com
|
||||
- DOMAIN-SUFFIX,aimoon.com
|
||||
- DOMAIN-SUFFIX,coingecko.com
|
||||
- DOMAIN-SUFFIX,coinmarketcap.com
|
||||
- DOMAIN-SUFFIX,glassnode.com
|
||||
- DOMAIN-SUFFIX,coinmetrics.io
|
||||
- DOMAIN-SUFFIX,tokenview.com
|
||||
- DOMAIN-SUFFIX,oklink.com
|
||||
- DOMAIN-SUFFIX,blockchair.com
|
||||
- DOMAIN-SUFFIX,intotheblock.com
|
||||
- DOMAIN-SUFFIX,bytetree.com
|
||||
- DOMAIN-SUFFIX,coin.dance
|
||||
- DOMAIN-SUFFIX,defieye.io
|
||||
- DOMAIN-SUFFIX,duneanalytics.com
|
||||
- DOMAIN-SUFFIX,tokenterminal.com
|
||||
- DOMAIN-SUFFIX,dapp.review
|
||||
- DOMAIN-SUFFIX,dappradar.com
|
||||
- DOMAIN-SUFFIX,stateofthedapps.com
|
||||
- DOMAIN-SUFFIX,thegraph.com
|
||||
- DOMAIN-SUFFIX,debank.com
|
||||
- DOMAIN-SUFFIX,vfat.tools
|
||||
- DOMAIN-SUFFIX,loanscan.io
|
||||
- DOMAIN-SUFFIX,defirate.com
|
||||
- DOMAIN-SUFFIX,defipulse.com
|
||||
- DOMAIN-SUFFIX,apy999.com
|
||||
- DOMAIN-SUFFIX,defieye.io
|
||||
- DOMAIN-SUFFIX,dextools.io
|
||||
- DOMAIN-SUFFIX,tradingview.com
|
||||
- DOMAIN-SUFFIX,dcabtc.com
|
||||
- DOMAIN-SUFFIX,chainalysis.com
|
||||
- DOMAIN-SUFFIX,cryptoquant.com
|
||||
- DOMAIN-SUFFIX,viewbase.com
|
||||
- DOMAIN-SUFFIX,bitcoinity.org
|
||||
- DOMAIN-SUFFIX,cryptocompare.com
|
||||
- DOMAIN-SUFFIX,coincodex.com
|
||||
- DOMAIN-SUFFIX,cointrendz.com
|
||||
- DOMAIN-SUFFIX,coincheckup.com
|
||||
- DOMAIN-SUFFIX,thetie.io
|
||||
- DOMAIN-SUFFIX,cryptorank.io
|
||||
- DOMAIN-SUFFIX,tradeblock.com
|
||||
- DOMAIN-SUFFIX,nyctale.io
|
||||
- DOMAIN-SUFFIX,dovemetrics.com
|
||||
- DOMAIN-SUFFIX,cryptorank.io
|
||||
- DOMAIN-SUFFIX,icodrops.com
|
||||
- DOMAIN-SUFFIX,chainbroker.io
|
||||
- DOMAIN-SUFFIX,crunchbase.com
|
||||
- DOMAIN-SUFFIX,defillama.com
|
||||
- DOMAIN-SUFFIX,coinowo.com
|
||||
- DOMAIN-SUFFIX,earni.fi
|
||||
- DOMAIN-SUFFIX,dropsearn.com
|
||||
- DOMAIN-SUFFIX,bitcoin.it
|
||||
- DOMAIN-SUFFIX,bitcoinmagazine.com
|
||||
- DOMAIN-SUFFIX,blockchain.com
|
||||
- DOMAIN-SUFFIX,tronscan.org
|
||||
|
||||
# > POOL
|
||||
- DOMAIN-SUFFIX,btc.com
|
||||
- DOMAIN-SUFFIX,f2pool.com
|
||||
- DOMAIN-SUFFIX,cbeci.org
|
||||
- DOMAIN-SUFFIX,digiconomist.net
|
||||
- DOMAIN-SUFFIX,1ml.com
|
||||
- DOMAIN-SUFFIX,bitcoinvisuals.com
|
||||
- DOMAIN-SUFFIX,crypto51.app
|
||||
- DOMAIN-SUFFIX,masternodes.online
|
||||
- DOMAIN-SUFFIX,bitnodes.earn.com
|
||||
- DOMAIN-SUFFIX,poolin.com
|
||||
- DOMAIN-SUFFIX,ethermine.org
|
||||
- DOMAIN-SUFFIX,ewapool.net
|
||||
|
||||
# > FTX
|
||||
- DOMAIN-SUFFIX,ftx.com
|
||||
|
||||
# > Metamask
|
||||
- DOMAIN-KEYWORD,metamask
|
||||
- DOMAIN,token-api.metaswap.codefi.network
|
||||
- DOMAIN,min-api.cryptocompare.com
|
||||
|
||||
# > NFT
|
||||
- DOMAIN-SUFFIX,opensea.io
|
||||
- DOMAIN-SUFFIX,nftscan.com
|
||||
- DOMAIN-SUFFIX,makersplace.com
|
||||
- DOMAIN-SUFFIX,nonfungible.com
|
||||
- DOMAIN-SUFFIX,cryptoslam.io
|
||||
- DOMAIN-SUFFIX,cryptoart.io
|
||||
- DOMAIN-SUFFIX,nftcalendar.io
|
||||
- DOMAIN-SUFFIX,nftgo.io
|
||||
|
||||
# > IPFS
|
||||
- DOMAIN-SUFFIX,filecoin.io
|
||||
- DOMAIN-SUFFIX,docs.lotu.sh
|
||||
- DOMAIN-SUFFIX,ipfs.io
|
||||
- DOMAIN-SUFFIX,docs.ipfs.io
|
||||
- DOMAIN-SUFFIX,discuss.ipfs.io
|
||||
|
||||
# > EOS
|
||||
- DOMAIN-SUFFIX,eos.io
|
||||
- DOMAIN-SUFFIX,developers.eos.io
|
||||
- DOMAIN-SUFFIX,block.one
|
||||
- DOMAIN-SUFFIX,eostracker.io
|
||||
- DOMAIN-SUFFIX,eosflare.io
|
||||
- DOMAIN-SUFFIX,eospark.com
|
||||
- DOMAIN-SUFFIX,bloks.io
|
||||
|
||||
# > Lightning
|
||||
- DOMAIN-SUFFIX,lightning.engineering
|
||||
- DOMAIN-SUFFIX,lightning.community
|
||||
- DOMAIN-SUFFIX,acinq.co
|
||||
- DOMAIN-SUFFIX,1ml.com
|
||||
|
||||
# > Token
|
||||
- DOMAIN-SUFFIX,tokenpocket.pro
|
||||
- DOMAIN-SUFFIX,token.im
|
||||
- DOMAIN-SUFFIX,phantom.app
|
||||
- DOMAIN-SUFFIX,tronlink.org
|
||||
- DOMAIN-SUFFIX,myetherwallet.com
|
||||
- DOMAIN-SUFFIX,jaxx.io
|
||||
- DOMAIN-SUFFIX,trustwalletapp.com
|
||||
|
||||
# > Gate
|
||||
- DOMAIN-SUFFIX,gate.ac
|
||||
- DOMAIN-SUFFIX,gate.io
|
||||
|
||||
# > Mexc
|
||||
- DOMAIN-SUFFIX,mexc.com
|
||||
|
||||
# > Dapp
|
||||
- DOMAIN-SUFFIX,sushi.com
|
||||
- DOMAIN-SUFFIX,uniswap.org
|
||||
- DOMAIN-SUFFIX,sunswap.com
|
||||
- DOMAIN-SUFFIX,traderjoexyz.com
|
||||
- DOMAIN-SUFFIX,raydium.io
|
||||
- DOMAIN-SUFFIX,synthetix.io
|
||||
- DOMAIN-SUFFIX,aave.com
|
||||
- DOMAIN-SUFFIX,compound.finance
|
||||
- DOMAIN-SUFFIX,makerdao.com
|
||||
- DOMAIN-SUFFIX,wbtc.network
|
||||
- DOMAIN-SUFFIX,pancakeswap.finance
|
||||
- DOMAIN-SUFFIX,pancakeswap.com
|
||||
- DOMAIN-SUFFIX,mdex.co
|
||||
- DOMAIN-SUFFIX,mdex.one
|
||||
- DOMAIN-SUFFIX,mdex.com
|
||||
- DOMAIN-SUFFIX,mdex.me
|
||||
- DOMAIN-SUFFIX,1inch.io
|
25
luci-app-openclash/root/etc/openclash/rule_provider/DAZN
Normal file
25
luci-app-openclash/root/etc/openclash/rule_provider/DAZN
Normal file
@ -0,0 +1,25 @@
|
||||
payload:
|
||||
# > DAZN
|
||||
# - USER-AGENT,DAZN*
|
||||
|
||||
- PROCESS-NAME,com.dazn
|
||||
|
||||
- DOMAIN-KEYWORD,voddazn
|
||||
|
||||
- DOMAIN-SUFFIX,dazn.com
|
||||
- DOMAIN-SUFFIX,dazn-api.com
|
||||
- DOMAIN-SUFFIX,dazndn.com
|
||||
- DOMAIN-SUFFIX,daznedge.net
|
||||
- DOMAIN-SUFFIX,daznfeeds.com
|
||||
- DOMAIN-SUFFIX,daznservices.com
|
||||
- DOMAIN-SUFFIX,indazn.com
|
||||
- DOMAIN-SUFFIX,indaznlab.com
|
||||
|
||||
- DOMAIN,daznfeeds.com.edgekey.net
|
||||
- DOMAIN,dca-lm-livedazn.secure.footprint.net
|
||||
- DOMAIN,h-dazn.online-metrix.net
|
||||
- DOMAIN,images-daznservices-com.cdn.ampproject.org
|
||||
- DOMAIN,d151l6v8er5bdm.cloudfront.net
|
||||
|
||||
- IP-CIDR,185.42.236.0/24,no-resolve
|
||||
- IP-CIDR,185.42.238.0/24,no-resolve
|
@ -0,0 +1,8 @@
|
||||
payload:
|
||||
# > Discord
|
||||
- DOMAIN-SUFFIX,discord.com
|
||||
- DOMAIN-SUFFIX,discord.gg
|
||||
- DOMAIN-SUFFIX,discord.media
|
||||
- DOMAIN-SUFFIX,discordapp.com
|
||||
- DOMAIN-SUFFIX,discordapp.net
|
||||
- DOMAIN-SUFFIX,discordstatus.com
|
@ -0,0 +1,11 @@
|
||||
payload:
|
||||
# > Discovery Plus
|
||||
- PROCESS-NAME,com.discovery.discoveryplus.mobile
|
||||
- DOMAIN-SUFFIX,content-ause1-ur-discovery1.uplynk.com
|
||||
- DOMAIN-SUFFIX,disco-api.com
|
||||
- DOMAIN-SUFFIX,discoveryplus.com
|
||||
- DOMAIN-SUFFIX,fwmrm.net
|
||||
- DOMAIN-SUFFIX,getblueshift.com
|
||||
- DOMAIN-SUFFIX,litix.io
|
||||
- DOMAIN-SUFFIX,mobile-collector.newrelic.com
|
||||
- DOMAIN-SUFFIX,uplynk.com
|
@ -0,0 +1,21 @@
|
||||
payload:
|
||||
# > Disney Plus
|
||||
# - USER-AGENT,Disney*
|
||||
|
||||
- PROCESS-NAME,com.disney.disneyplus
|
||||
|
||||
- DOMAIN-SUFFIX,adobedtm.com
|
||||
- DOMAIN-SUFFIX,bam.nr-date.net
|
||||
- DOMAIN-SUFFIX,bamgrid.com
|
||||
- DOMAIN-SUFFIX,braze.com
|
||||
- DOMAIN-SUFFIX,cdn.optimizely.com
|
||||
- DOMAIN-SUFFIX,d9.flashtalking.com
|
||||
- DOMAIN-SUFFIX,disney.demdex.net
|
||||
- DOMAIN-SUFFIX,disney.my.sentry.io
|
||||
- DOMAIN-SUFFIX,disneyplus.bn5x.net
|
||||
- DOMAIN-SUFFIX,disneyplus.com
|
||||
- DOMAIN-SUFFIX,disneyplus.com.ssl.sc.omtrdc.net
|
||||
- DOMAIN-SUFFIX,disney-plus.net
|
||||
- DOMAIN-SUFFIX,disney-portal.my.onetrust.com
|
||||
- DOMAIN-SUFFIX,dssott.com
|
||||
- DOMAIN-SUFFIX,registerdisney.go.com
|
335
luci-app-openclash/root/etc/openclash/rule_provider/Domestic
Normal file
335
luci-app-openclash/root/etc/openclash/rule_provider/Domestic
Normal file
@ -0,0 +1,335 @@
|
||||
payload:
|
||||
# China Banks
|
||||
# > Agricultural Bank of China
|
||||
- DOMAIN-SUFFIX,abchina.com
|
||||
- DOMAIN-SUFFIX,abchina.com.cn
|
||||
|
||||
# > Bank of China
|
||||
- DOMAIN-SUFFIX,boc.cn
|
||||
|
||||
# > China Citic Bank
|
||||
- DOMAIN-SUFFIX,citicbank.com
|
||||
- DOMAIN-SUFFIX,ecitic.com
|
||||
- DOMAIN-SUFFIX,ecitic.net
|
||||
|
||||
# > China Construction Bank
|
||||
- DOMAIN-SUFFIX,ccb.com
|
||||
- DOMAIN-SUFFIX,ccb.com.cn
|
||||
|
||||
# > China Everbright Bank
|
||||
- DOMAIN-SUFFIX,cebbank.com
|
||||
|
||||
# > China Merchants Bank
|
||||
# - USER-AGENT,cmb*
|
||||
- DOMAIN-SUFFIX,cmbchina.com
|
||||
- DOMAIN-SUFFIX,cmbimg.com
|
||||
- DOMAIN-SUFFIX,cmbt.cn
|
||||
- DOMAIN-SUFFIX,mbcloud.com
|
||||
|
||||
# > Industrial and Commercial Bank of China
|
||||
# - USER-AGENT,%E4%B8%AD%E5%9B%BD%E5%B7%A5%E5%95%86%E9%93%B6%E8%A1%8C*
|
||||
- DOMAIN-SUFFIX,icbc.com.cn
|
||||
|
||||
# > Ping An Bank
|
||||
- DOMAIN-SUFFIX,pingan.com
|
||||
- DOMAIN-SUFFIX,pingan.com.cn
|
||||
|
||||
# Type
|
||||
# > Beplay
|
||||
- DOMAIN-KEYWORD,beplay
|
||||
|
||||
# > Blizzard
|
||||
# - USER-AGENT,hearthstone*
|
||||
- DOMAIN,cdp.cloud.unity3d.com
|
||||
- DOMAIN-SUFFIX,battle.net
|
||||
- DOMAIN-SUFFIX,battlenet.com
|
||||
- DOMAIN-SUFFIX,blizzard.com
|
||||
|
||||
# > Prior
|
||||
- DOMAIN,client.amplifi.com
|
||||
- DOMAIN,ip.bjango.com
|
||||
- DOMAIN-SUFFIX,alphassl.com
|
||||
- DOMAIN-SUFFIX,edu.cn
|
||||
|
||||
# > RRYS
|
||||
- DOMAIN-SUFFIX,p4pfile.com
|
||||
- DOMAIN-SUFFIX,zmzfile.com
|
||||
|
||||
# > Sony
|
||||
# - USER-AGENT,RemotePlay*
|
||||
- DOMAIN-SUFFIX,playstation.com
|
||||
- DOMAIN-SUFFIX,playstation.net
|
||||
- DOMAIN-SUFFIX,playstationnetwork.com
|
||||
- DOMAIN-SUFFIX,sony.com
|
||||
- DOMAIN-SUFFIX,sonyentertainmentnetwork.com
|
||||
|
||||
# > TeamViewer
|
||||
- IP-CIDR,185.188.32.0/24,no-resolve
|
||||
- IP-CIDR,185.188.33.0/24,no-resolve
|
||||
- IP-CIDR,185.188.34.0/24,no-resolve
|
||||
- IP-CIDR,185.188.35.0/24,no-resolve
|
||||
- IP-CIDR6,2a0b:b580::/48,no-resolve
|
||||
- IP-CIDR6,2a0b:b581::/48,no-resolve
|
||||
- IP-CIDR6,2a0b:b582::/48,no-resolve
|
||||
- IP-CIDR6,2a0b:b583::/48,no-resolve
|
||||
|
||||
# > Tencent
|
||||
- IP-CIDR,182.254.116.0/24,no-resolve
|
||||
|
||||
# > Tencent WeChat (International)
|
||||
- IP-CIDR,101.32.104.0/21,DIRECT,no-resolve
|
||||
- IP-CIDR,101.32.118.0/23,DIRECT,no-resolve
|
||||
- IP-CIDR,101.32.96.0/20,DIRECT,no-resolve
|
||||
- IP-CIDR,129.226.0.0/16,DIRECT,no-resolve
|
||||
- IP-CIDR,183.128.0.0/11,DIRECT,no-resolve
|
||||
- IP-CIDR,183.131.48.0/20,DIRECT,no-resolve
|
||||
|
||||
- DOMAIN-SUFFIX,10010.com
|
||||
- DOMAIN-SUFFIX,10086.cn
|
||||
- DOMAIN-SUFFIX,12306.cn
|
||||
- DOMAIN-SUFFIX,12306.com
|
||||
- DOMAIN-SUFFIX,126.net
|
||||
- DOMAIN-SUFFIX,163.com
|
||||
- DOMAIN-SUFFIX,189.cn
|
||||
- DOMAIN-SUFFIX,360.cn
|
||||
- DOMAIN-SUFFIX,360.com
|
||||
- DOMAIN-SUFFIX,360buy.com
|
||||
- DOMAIN-SUFFIX,360buyimg.com
|
||||
- DOMAIN-SUFFIX,36kr.com
|
||||
- DOMAIN-SUFFIX,51ym.me
|
||||
- DOMAIN-SUFFIX,58.com
|
||||
- DOMAIN-SUFFIX,8686c.com
|
||||
- DOMAIN-SUFFIX,95516.com
|
||||
- DOMAIN-SUFFIX,abercrombie.com
|
||||
- DOMAIN-SUFFIX,acfun.tv
|
||||
- DOMAIN-SUFFIX,adobesc.com
|
||||
- DOMAIN-SUFFIX,air-matters.com
|
||||
- DOMAIN-SUFFIX,air-matters.io
|
||||
- DOMAIN-SUFFIX,aixifan.com
|
||||
- DOMAIN-SUFFIX,akadns.net
|
||||
- DOMAIN-SUFFIX,alibaba.com
|
||||
- DOMAIN-SUFFIX,alibabacloud.com
|
||||
- DOMAIN-SUFFIX,alicdn.com
|
||||
- DOMAIN-SUFFIX,alipay.com
|
||||
- DOMAIN-SUFFIX,alipayobjects.com
|
||||
- DOMAIN-SUFFIX,aliyun.com
|
||||
- DOMAIN-SUFFIX,aliyuncs.com
|
||||
- DOMAIN-SUFFIX,amap.com
|
||||
- DOMAIN-SUFFIX,appshike.com
|
||||
- DOMAIN-SUFFIX,appstore.com
|
||||
- DOMAIN-SUFFIX,autonavi.com
|
||||
- DOMAIN-SUFFIX,bababian.com
|
||||
- DOMAIN-SUFFIX,baidu.com
|
||||
- DOMAIN-SUFFIX,baidupcs.com
|
||||
- DOMAIN-SUFFIX,bdimg.com
|
||||
- DOMAIN-SUFFIX,bdstatic.com
|
||||
- DOMAIN-SUFFIX,beatsbydre.com
|
||||
- DOMAIN-SUFFIX,broadcasthe.net
|
||||
- DOMAIN-SUFFIX,caiyunapp.com
|
||||
- DOMAIN-SUFFIX,ccgslb.com
|
||||
- DOMAIN-SUFFIX,ccgslb.net
|
||||
- DOMAIN-SUFFIX,chinacache.net
|
||||
- DOMAIN-SUFFIX,chunbo.com
|
||||
- DOMAIN-SUFFIX,chunboimg.com
|
||||
- DOMAIN-SUFFIX,clashroyaleapp.com
|
||||
- DOMAIN-SUFFIX,clouddn.com
|
||||
- DOMAIN-SUFFIX,cloudsigma.com
|
||||
- DOMAIN-SUFFIX,cloudxns.net
|
||||
- DOMAIN-SUFFIX,cmct.tv
|
||||
- DOMAIN-SUFFIX,cmfu.com
|
||||
- DOMAIN-SUFFIX,cnbeta.com
|
||||
- DOMAIN-SUFFIX,cnbetacdn.com
|
||||
- DOMAIN-SUFFIX,chdbits.co
|
||||
- DOMAIN-SUFFIX,cnlang.org
|
||||
- DOMAIN-SUFFIX,coolapk.com
|
||||
- DOMAIN-SUFFIX,cn88.net
|
||||
- DOMAIN-SUFFIX,dct-cloud.com
|
||||
- DOMAIN-SUFFIX,didialift.com
|
||||
- DOMAIN-SUFFIX,digicert.com
|
||||
- DOMAIN-SUFFIX,douban.com
|
||||
- DOMAIN-SUFFIX,doubanio.com
|
||||
- DOMAIN-SUFFIX,douyin.com
|
||||
- DOMAIN-SUFFIX,douyu.com
|
||||
- DOMAIN-SUFFIX,douyu.tv
|
||||
- DOMAIN-SUFFIX,douyutv.com
|
||||
- DOMAIN-SUFFIX,duokan.com
|
||||
- DOMAIN-SUFFIX,duoshuo.com
|
||||
- DOMAIN-SUFFIX,dytt8.net
|
||||
- DOMAIN-SUFFIX,easou.com
|
||||
- DOMAIN-SUFFIX,eudic.net
|
||||
- DOMAIN-SUFFIX,ewqcxz.com
|
||||
- DOMAIN-SUFFIX,feng.com
|
||||
- DOMAIN-SUFFIX,fir.im
|
||||
- DOMAIN-SUFFIX,firefox.com
|
||||
- DOMAIN-SUFFIX,frdic.com
|
||||
- DOMAIN-SUFFIX,fresh-ideas.cc
|
||||
- DOMAIN-SUFFIX,gameloft.com
|
||||
- DOMAIN-SUFFIX,garmin.com
|
||||
- DOMAIN-SUFFIX,geetest.com
|
||||
- DOMAIN-SUFFIX,godic.net
|
||||
- DOMAIN-SUFFIX,goodread.com
|
||||
- DOMAIN-SUFFIX,goofish.com
|
||||
- DOMAIN-SUFFIX,gtimg.com
|
||||
- DOMAIN-SUFFIX,haibian.com
|
||||
- DOMAIN-SUFFIX,hao123.com
|
||||
- DOMAIN-SUFFIX,haosou.com
|
||||
- DOMAIN-SUFFIX,hdchina.org
|
||||
- DOMAIN-SUFFIX,hdcmct.org
|
||||
- DOMAIN-SUFFIX,hjfile.cn
|
||||
- DOMAIN-SUFFIX,hkserversolution.com
|
||||
- DOMAIN-SUFFIX,hollisterco.com
|
||||
- DOMAIN-SUFFIX,hongxiu.com
|
||||
- DOMAIN-SUFFIX,hujiang.com
|
||||
- DOMAIN-SUFFIX,hxcdn.net
|
||||
- DOMAIN-SUFFIX,icedropper.com
|
||||
- DOMAIN-SUFFIX,iciba.com
|
||||
- DOMAIN-SUFFIX,ifeng.com
|
||||
- DOMAIN-SUFFIX,ifengimg.com
|
||||
- DOMAIN-SUFFIX,images-amazon.com
|
||||
- DOMAIN-SUFFIX,img4me.com
|
||||
- DOMAIN-SUFFIX,ithome.com
|
||||
- DOMAIN-SUFFIX,ixdzs.com
|
||||
- DOMAIN-SUFFIX,jd.com
|
||||
- DOMAIN-SUFFIX,jd.hk
|
||||
- DOMAIN-SUFFIX,jianshu.com
|
||||
- DOMAIN-SUFFIX,jianshu.io
|
||||
- DOMAIN-SUFFIX,jianshuapi.com
|
||||
- DOMAIN-SUFFIX,jiathis.com
|
||||
- DOMAIN-SUFFIX,jomodns.com
|
||||
- DOMAIN-SUFFIX,jsboxbbs.com
|
||||
- DOMAIN-SUFFIX,knewone.com
|
||||
- DOMAIN-SUFFIX,kuaidi100.com
|
||||
- DOMAIN-SUFFIX,kugou.com
|
||||
- DOMAIN-SUFFIX,lecloud.com
|
||||
- DOMAIN-SUFFIX,lemicp.com
|
||||
- DOMAIN-SUFFIX,letv.com
|
||||
- DOMAIN-SUFFIX,letvcloud.com
|
||||
- DOMAIN-SUFFIX,liyuans.com
|
||||
- DOMAIN-SUFFIX,lizhi.io
|
||||
- DOMAIN-SUFFIX,localizecdn.com
|
||||
- DOMAIN-SUFFIX,lucifr.com
|
||||
- DOMAIN-SUFFIX,luoo.net
|
||||
- DOMAIN-SUFFIX,lxdns.com
|
||||
- DOMAIN-SUFFIX,mai.tn
|
||||
- DOMAIN-SUFFIX,meizu.com
|
||||
- DOMAIN-SUFFIX,metatrader4.com
|
||||
- DOMAIN-SUFFIX,metatrader5.com
|
||||
- DOMAIN-SUFFIX,mi.com
|
||||
- DOMAIN-SUFFIX,miaopai.com
|
||||
- DOMAIN-SUFFIX,miui.com
|
||||
- DOMAIN-SUFFIX,miwifi.com
|
||||
- DOMAIN-SUFFIX,mob.com
|
||||
- DOMAIN-SUFFIX,moji.com
|
||||
- DOMAIN-SUFFIX,moke.com
|
||||
- DOMAIN-SUFFIX,mxhichina.com
|
||||
- DOMAIN-SUFFIX,myqcloud.com
|
||||
- DOMAIN-SUFFIX,myunlu.com
|
||||
- DOMAIN-SUFFIX,ngabbs.com
|
||||
- DOMAIN-SUFFIX,netease.com
|
||||
- DOMAIN-SUFFIX,nfoservers.com
|
||||
- DOMAIN-SUFFIX,nssurge.com
|
||||
- DOMAIN-SUFFIX,nuomi.com
|
||||
- DOMAIN-SUFFIX,ourbits.club
|
||||
- DOMAIN-SUFFIX,ourdvs.com
|
||||
- DOMAIN-SUFFIX,passthepopcorn.me
|
||||
- DOMAIN-SUFFIX,pgyer.com
|
||||
- DOMAIN-SUFFIX,pniao.com
|
||||
- DOMAIN-SUFFIX,privatehd.to
|
||||
- DOMAIN-SUFFIX,qbox.me
|
||||
- DOMAIN-SUFFIX,qcloud.com
|
||||
- DOMAIN-SUFFIX,qdaily.com
|
||||
- DOMAIN-SUFFIX,qdmm.com
|
||||
- DOMAIN-SUFFIX,qhimg.com
|
||||
- DOMAIN-SUFFIX,qidian.com
|
||||
- DOMAIN-SUFFIX,qihucdn.com
|
||||
- DOMAIN-SUFFIX,qin.io
|
||||
- DOMAIN-SUFFIX,qingmang.me
|
||||
- DOMAIN-SUFFIX,qingmang.mobi
|
||||
- DOMAIN-SUFFIX,qiniucdn.com
|
||||
- DOMAIN-SUFFIX,qiniudn.com
|
||||
- DOMAIN-SUFFIX,qq.com
|
||||
- DOMAIN-SUFFIX,qqurl.com
|
||||
- DOMAIN-SUFFIX,rarbg.to
|
||||
- DOMAIN-SUFFIX,redacted.ch
|
||||
- DOMAIN-SUFFIX,rrmj.tv
|
||||
- DOMAIN-SUFFIX,ruguoapp.com
|
||||
- DOMAIN-SUFFIX,sandai.net
|
||||
- DOMAIN-SUFFIX,sf-express.com
|
||||
- DOMAIN-SUFFIX,sinaapp.com
|
||||
- DOMAIN-SUFFIX,sinaimg.cn
|
||||
- DOMAIN-SUFFIX,sinaimg.com
|
||||
- DOMAIN-SUFFIX,sm.ms
|
||||
- DOMAIN-SUFFIX,smzdm.com
|
||||
- DOMAIN-SUFFIX,snwx.com
|
||||
- DOMAIN-SUFFIX,so.com
|
||||
- DOMAIN-SUFFIX,sogou.com
|
||||
- DOMAIN-SUFFIX,sogoucdn.com
|
||||
- DOMAIN-SUFFIX,sohu.com
|
||||
- DOMAIN-SUFFIX,soku.com
|
||||
- DOMAIN-SUFFIX,soso.com
|
||||
- DOMAIN-SUFFIX,sspai.com
|
||||
- DOMAIN-SUFFIX,startssl.com
|
||||
- DOMAIN-SUFFIX,suning.com
|
||||
- DOMAIN-SUFFIX,symcd.com
|
||||
- DOMAIN-SUFFIX,taobao.com
|
||||
- DOMAIN-SUFFIX,tawk.link
|
||||
- DOMAIN-SUFFIX,tawk.to
|
||||
- DOMAIN-SUFFIX,tenpay.com
|
||||
- DOMAIN-SUFFIX,tietuku.com
|
||||
- DOMAIN-SUFFIX,tmall.com
|
||||
- DOMAIN-SUFFIX,tmzvps.com
|
||||
- DOMAIN-SUFFIX,trello.com
|
||||
- DOMAIN-SUFFIX,trellocdn.com
|
||||
- DOMAIN-SUFFIX,totheglory.im
|
||||
- DOMAIN-SUFFIX,ttmeiju.com
|
||||
- DOMAIN-SUFFIX,tudou.com
|
||||
- DOMAIN-SUFFIX,udache.com
|
||||
- DOMAIN-SUFFIX,umengcloud.com
|
||||
- DOMAIN-SUFFIX,upaiyun.com
|
||||
- DOMAIN-SUFFIX,upyun.com
|
||||
- DOMAIN-SUFFIX,uxengine.net
|
||||
- DOMAIN-SUFFIX,wandoujia.com
|
||||
- DOMAIN-SUFFIX,weather.bjango.com
|
||||
- DOMAIN-SUFFIX,weather.com
|
||||
- DOMAIN-SUFFIX,webqxs.com
|
||||
- DOMAIN-SUFFIX,weibo.cn
|
||||
- DOMAIN-SUFFIX,weibo.com
|
||||
- DOMAIN-SUFFIX,weico.cc
|
||||
- DOMAIN-SUFFIX,weiphone.com
|
||||
- DOMAIN-SUFFIX,weiphone.net
|
||||
- DOMAIN-SUFFIX,wenku8.net
|
||||
- DOMAIN-SUFFIX,werewolf.53site.com
|
||||
- DOMAIN-SUFFIX,wkcdn.com
|
||||
- DOMAIN-SUFFIX,xdrig.com
|
||||
- DOMAIN-SUFFIX,xhostfire.com
|
||||
- DOMAIN-SUFFIX,xhscdn.com
|
||||
- DOMAIN-SUFFIX,xiaohongshu.com
|
||||
- DOMAIN-SUFFIX,xiaojukeji.com
|
||||
- DOMAIN-SUFFIX,xiaomi.com
|
||||
- DOMAIN-SUFFIX,xiaomi.net
|
||||
- DOMAIN-SUFFIX,xiaomicp.com
|
||||
- DOMAIN-SUFFIX,ximalaya.com
|
||||
- DOMAIN-SUFFIX,xitek.com
|
||||
- DOMAIN-SUFFIX,xmcdn.com
|
||||
- DOMAIN-SUFFIX,xslb.net
|
||||
- DOMAIN-SUFFIX,yach.me
|
||||
- DOMAIN-SUFFIX,yeepay.com
|
||||
- DOMAIN-SUFFIX,yhd.com
|
||||
- DOMAIN-SUFFIX,yinxiang.com
|
||||
- DOMAIN-SUFFIX,yixia.com
|
||||
- DOMAIN-SUFFIX,ykimg.com
|
||||
- DOMAIN-SUFFIX,youdao.com
|
||||
- DOMAIN-SUFFIX,youku.com
|
||||
- DOMAIN-SUFFIX,yunjiasu-cdn.net
|
||||
- DOMAIN-SUFFIX,zealer.com
|
||||
- DOMAIN-SUFFIX,zgslb.net
|
||||
- DOMAIN-SUFFIX,zhihu.com
|
||||
- DOMAIN-SUFFIX,zhimg.com
|
||||
- DOMAIN-SUFFIX,zimuzu.tv
|
||||
- DOMAIN-SUFFIX,zmz002.com
|
||||
|
||||
- IP-CIDR,1.255.62.0/24,no-resolve
|
||||
|
||||
# > CN
|
||||
- DOMAIN-SUFFIX,gov.cn
|
||||
- DOMAIN-SUFFIX,cn
|
6608
luci-app-openclash/root/etc/openclash/rule_provider/Domestic_IPs
Normal file
6608
luci-app-openclash/root/etc/openclash/rule_provider/Domestic_IPs
Normal file
File diff suppressed because it is too large
Load Diff
10
luci-app-openclash/root/etc/openclash/rule_provider/F1_TV
Normal file
10
luci-app-openclash/root/etc/openclash/rule_provider/F1_TV
Normal file
@ -0,0 +1,10 @@
|
||||
payload:
|
||||
# > F1 TV
|
||||
- DOMAIN,d2n9h2wits23hf.cloudfront.net
|
||||
- DOMAIN,f1prodlive.akamaized.net
|
||||
- DOMAIN,mobile-collector.newrelic.com
|
||||
- DOMAIN-SUFFIX,bitmovin.com
|
||||
- DOMAIN-SUFFIX,f1esports.com
|
||||
- DOMAIN-SUFFIX,f1manager.com
|
||||
- DOMAIN-SUFFIX,f1play.com
|
||||
- DOMAIN-SUFFIX,formula1.com
|
37
luci-app-openclash/root/etc/openclash/rule_provider/FCM
Normal file
37
luci-app-openclash/root/etc/openclash/rule_provider/FCM
Normal file
@ -0,0 +1,37 @@
|
||||
payload:
|
||||
# > Google FCM
|
||||
- DOMAIN,alt1-mtalk.google.com
|
||||
- DOMAIN,alt2-mtalk.google.com
|
||||
- DOMAIN,alt3-mtalk.google.com
|
||||
- DOMAIN,alt4-mtalk.google.com
|
||||
- DOMAIN,alt5-mtalk.google.com
|
||||
- DOMAIN,alt6-mtalk.google.com
|
||||
- DOMAIN,alt7-mtalk.google.com
|
||||
- DOMAIN,alt8-mtalk.google.com
|
||||
- DOMAIN,mtalk.google.com
|
||||
- IP-CIDR,64.233.177.188/32,no-resolve
|
||||
- IP-CIDR,64.233.186.188/32,no-resolve
|
||||
- IP-CIDR,64.233.187.188/32,no-resolve
|
||||
- IP-CIDR,64.233.188.188/32,no-resolve
|
||||
- IP-CIDR,64.233.189.188/32,no-resolve
|
||||
- IP-CIDR,74.125.23.188/32,no-resolve
|
||||
- IP-CIDR,74.125.24.188/32,no-resolve
|
||||
- IP-CIDR,74.125.28.188/32,no-resolve
|
||||
- IP-CIDR,74.125.127.188/32,no-resolve
|
||||
- IP-CIDR,74.125.137.188/32,no-resolve
|
||||
- IP-CIDR,74.125.203.188/32,no-resolve
|
||||
- IP-CIDR,74.125.204.188/32,no-resolve
|
||||
- IP-CIDR,74.125.206.188/32,no-resolve
|
||||
- IP-CIDR,108.177.125.188/32,no-resolve
|
||||
- IP-CIDR,142.250.4.188/32,no-resolve
|
||||
- IP-CIDR,142.250.10.188/32,no-resolve
|
||||
- IP-CIDR,142.250.31.188/32,no-resolve
|
||||
- IP-CIDR,142.250.96.188/32,no-resolve
|
||||
- IP-CIDR,172.217.194.188/32,no-resolve
|
||||
- IP-CIDR,172.217.218.188/32,no-resolve
|
||||
- IP-CIDR,172.217.219.188/32,no-resolve
|
||||
- IP-CIDR,172.253.63.188/32,no-resolve
|
||||
- IP-CIDR,172.253.122.188/32,no-resolve
|
||||
- IP-CIDR,173.194.175.188/32,no-resolve
|
||||
- IP-CIDR,173.194.218.188/32,no-resolve
|
||||
- IP-CIDR,209.85.233.188/32,no-resolve
|
6
luci-app-openclash/root/etc/openclash/rule_provider/Fox+
Normal file
6
luci-app-openclash/root/etc/openclash/rule_provider/Fox+
Normal file
@ -0,0 +1,6 @@
|
||||
payload:
|
||||
# > Fox+ (HK|TW|SG)
|
||||
# - USER-AGENT,FOXPlus*
|
||||
- DOMAIN-SUFFIX,akamaized.net
|
||||
- DOMAIN-SUFFIX,foxplus.com
|
||||
- DOMAIN-SUFFIX,theplatform.com
|
@ -0,0 +1,6 @@
|
||||
payload:
|
||||
# > Fox Now
|
||||
# - USER-AGENT,FOX%20NOW*
|
||||
- DOMAIN-SUFFIX,fox.com
|
||||
- DOMAIN-SUFFIX,foxdcg.com
|
||||
- DOMAIN-SUFFIX,uplynk.com
|
622
luci-app-openclash/root/etc/openclash/rule_provider/Global.yaml
Normal file
622
luci-app-openclash/root/etc/openclash/rule_provider/Global.yaml
Normal file
@ -0,0 +1,622 @@
|
||||
payload:
|
||||
# (DNS Cache Pollution)
|
||||
# > Amazon
|
||||
- DOMAIN-SUFFIX,amazon.co.jp
|
||||
- DOMAIN,d3c33hcgiwev3.cloudfront.net
|
||||
- DOMAIN,payments-jp.amazon.com
|
||||
- DOMAIN,s3-ap-northeast-1.amazonaws.com
|
||||
- DOMAIN,s3-ap-southeast-2.amazonaws.com
|
||||
# > Akamai
|
||||
- DOMAIN,a248.e.akamai.net
|
||||
- DOMAIN,a771.dscq.akamai.net
|
||||
# > Apple
|
||||
- DOMAIN,testflight.apple.com
|
||||
# > Crypto
|
||||
- DOMAIN-SUFFIX,aex.com
|
||||
- DOMAIN-SUFFIX,bibox.com
|
||||
- DOMAIN-SUFFIX,binance.cc
|
||||
- DOMAIN-SUFFIX,binance.com
|
||||
- DOMAIN-SUFFIX,binance.us
|
||||
- DOMAIN-SUFFIX,bitcointalk.org
|
||||
- DOMAIN-SUFFIX,bitfinex.com
|
||||
- DOMAIN-SUFFIX,bithumb.com
|
||||
- DOMAIN-SUFFIX,bitmex.com
|
||||
- DOMAIN-SUFFIX,bitstamp.net
|
||||
- DOMAIN-SUFFIX,bittrex.com
|
||||
- DOMAIN-SUFFIX,bybit.com
|
||||
- DOMAIN-SUFFIX,coinbase.com
|
||||
- DOMAIN-SUFFIX,coincheck.com
|
||||
- DOMAIN-SUFFIX,coingecko.com
|
||||
- DOMAIN-SUFFIX,coinmarketcap.com
|
||||
- DOMAIN-SUFFIX,coinone.co.kr
|
||||
- DOMAIN-SUFFIX,ftx.com
|
||||
- DOMAIN-SUFFIX,gate.io
|
||||
- DOMAIN-SUFFIX,gemini.com
|
||||
- DOMAIN-SUFFIX,huobi.com
|
||||
- DOMAIN-SUFFIX,korbit.co.kr
|
||||
- DOMAIN-SUFFIX,kraken.com
|
||||
- DOMAIN-SUFFIX,kucoin.com
|
||||
- DOMAIN-SUFFIX,liquid.com
|
||||
- DOMAIN-SUFFIX,okex.com
|
||||
- DOMAIN-SUFFIX,poloniex.com
|
||||
- DOMAIN-SUFFIX,uniswap.org
|
||||
- DOMAIN-SUFFIX,zb.com
|
||||
# > Discord
|
||||
- DOMAIN-SUFFIX,discord.com
|
||||
- DOMAIN-SUFFIX,discordapp.com
|
||||
- DOMAIN-SUFFIX,discordapp.net
|
||||
# > Dropbox
|
||||
- DOMAIN-SUFFIX,dropbox.com
|
||||
- DOMAIN-SUFFIX,dropboxapi.com
|
||||
- DOMAIN-SUFFIX,dropboxusercontent.com
|
||||
# > Facebook
|
||||
- DOMAIN-SUFFIX,cdninstagram.com
|
||||
- DOMAIN-SUFFIX,facebook.com
|
||||
- DOMAIN-SUFFIX,facebook.net
|
||||
- DOMAIN-SUFFIX,fb.com
|
||||
- DOMAIN-SUFFIX,fb.me
|
||||
- DOMAIN-SUFFIX,fbaddins.com
|
||||
- DOMAIN-SUFFIX,fbcdn.net
|
||||
- DOMAIN-SUFFIX,fbsbx.com
|
||||
- DOMAIN-SUFFIX,fbworkmail.com
|
||||
- DOMAIN-SUFFIX,instagram.com
|
||||
- DOMAIN-SUFFIX,m.me
|
||||
- DOMAIN-SUFFIX,messenger.com
|
||||
- DOMAIN-SUFFIX,oculus.com
|
||||
- DOMAIN-SUFFIX,oculuscdn.com
|
||||
- DOMAIN-SUFFIX,rocksdb.org
|
||||
- DOMAIN-SUFFIX,whatsapp.com
|
||||
- DOMAIN-SUFFIX,whatsapp.net
|
||||
# > Github
|
||||
- DOMAIN-SUFFIX,github.com
|
||||
- DOMAIN-SUFFIX,github.io
|
||||
- DOMAIN-SUFFIX,githubusercontent.com
|
||||
# > Google
|
||||
- DOMAIN-SUFFIX,appspot.com
|
||||
- DOMAIN-SUFFIX,blogger.com
|
||||
- DOMAIN-SUFFIX,getoutline.org
|
||||
- DOMAIN-SUFFIX,gvt0.com
|
||||
- DOMAIN-SUFFIX,gvt1.com
|
||||
- DOMAIN-SUFFIX,gvt3.com
|
||||
- DOMAIN-SUFFIX,xn--ngstr-lra8j.com
|
||||
- DOMAIN-SUFFIX,ytimg.com
|
||||
- DOMAIN-KEYWORD,google
|
||||
- DOMAIN-KEYWORD,.blogspot.
|
||||
# > Line
|
||||
- DOMAIN-SUFFIX,line.me
|
||||
- DOMAIN-SUFFIX,line-apps.com
|
||||
- DOMAIN-SUFFIX,line-scdn.net
|
||||
- DOMAIN-SUFFIX,naver.jp
|
||||
- IP-CIDR,103.2.30.0/23,no-resolve
|
||||
- IP-CIDR,125.209.208.0/20,no-resolve
|
||||
- IP-CIDR,147.92.128.0/17,no-resolve
|
||||
- IP-CIDR,203.104.144.0/21,no-resolve
|
||||
# > Microsoft
|
||||
- DOMAIN-SUFFIX,aka.ms
|
||||
- DOMAIN-SUFFIX,onedrive.live.com
|
||||
- DOMAIN-SUFFIX,streaming.mediaservices.windows.net
|
||||
- DOMAIN,assets1.xboxlive.com
|
||||
- DOMAIN,assets2.xboxlive.com
|
||||
- DOMAIN,az416426.vo.msecnd.net
|
||||
- DOMAIN,az668014.vo.msecnd.net
|
||||
# > The New York Times
|
||||
- DOMAIN-SUFFIX,nyt.com
|
||||
- DOMAIN-SUFFIX,nytchina.com
|
||||
- DOMAIN-SUFFIX,nytcn.me
|
||||
- DOMAIN-SUFFIX,nytco.com
|
||||
- DOMAIN-SUFFIX,nytimes.com
|
||||
- DOMAIN-SUFFIX,nytimg.com
|
||||
- DOMAIN-SUFFIX,nytlog.com
|
||||
- DOMAIN-SUFFIX,nytstyle.com
|
||||
# > Pinterest
|
||||
- DOMAIN-SUFFIX,pinterest.at
|
||||
- DOMAIN-SUFFIX,pinterest.ca
|
||||
- DOMAIN-SUFFIX,pinterest.co.uk
|
||||
- DOMAIN-SUFFIX,pinterest.com
|
||||
- DOMAIN-SUFFIX,pinterest.de
|
||||
- DOMAIN-SUFFIX,pinterest.fr
|
||||
- DOMAIN-SUFFIX,pinterest.jp
|
||||
- DOMAIN-SUFFIX,pinterest.se
|
||||
# > pixiv
|
||||
- DOMAIN-SUFFIX,pixiv.net
|
||||
- DOMAIN-SUFFIX,pixiv.org
|
||||
- DOMAIN-SUFFIX,pximg.net
|
||||
# > Reddit
|
||||
- DOMAIN-SUFFIX,redd.it
|
||||
- DOMAIN-SUFFIX,reddit.com
|
||||
- DOMAIN-SUFFIX,redditmedia.com
|
||||
# > Telegram
|
||||
- DOMAIN-SUFFIX,telegra.ph
|
||||
- DOMAIN-SUFFIX,telegram.org
|
||||
- IP-CIDR,91.108.4.0/22,no-resolve
|
||||
- IP-CIDR,91.108.8.0/22,no-resolve
|
||||
- IP-CIDR,91.108.12.0/22,no-resolve
|
||||
- IP-CIDR,91.108.16.0/22,no-resolve
|
||||
- IP-CIDR,91.108.20.0/22,no-resolve
|
||||
- IP-CIDR,91.108.56.0/22,no-resolve
|
||||
- IP-CIDR,91.105.192.0/23,no-resolve
|
||||
- IP-CIDR,149.154.160.0/20,no-resolve
|
||||
- IP-CIDR,185.76.151.0/24,no-resolve
|
||||
- IP-CIDR,2001:b28:f23d::/48,no-resolve
|
||||
- IP-CIDR,2001:b28:f23f::/48,no-resolve
|
||||
- IP-CIDR,2001:67c:4e8::/48,no-resolve
|
||||
- IP-CIDR,2001:b28:f23c::/48,no-resolve
|
||||
- IP-CIDR,2a0a:f280::/32,no-resolve
|
||||
# > Twitter
|
||||
- DOMAIN-SUFFIX,pscp.tv
|
||||
- DOMAIN-SUFFIX,periscope.tv
|
||||
- DOMAIN-SUFFIX,t.co
|
||||
- DOMAIN-SUFFIX,twimg.co
|
||||
- DOMAIN-SUFFIX,twimg.com
|
||||
- DOMAIN-SUFFIX,twitpic.com
|
||||
- DOMAIN-SUFFIX,twitter.com
|
||||
- DOMAIN-SUFFIX,vine.co
|
||||
# > Wikimedia Foundation
|
||||
- DOMAIN-SUFFIX,wikileaks.org
|
||||
- DOMAIN-SUFFIX,wikimapia.org
|
||||
- DOMAIN-SUFFIX,wikimedia.org
|
||||
- DOMAIN-SUFFIX,wikinews.org
|
||||
- DOMAIN-SUFFIX,wikipedia.org
|
||||
- DOMAIN-SUFFIX,wikiquote.org
|
||||
# > Others
|
||||
- DOMAIN-SUFFIX,4shared.com
|
||||
- DOMAIN-SUFFIX,9cache.com
|
||||
- DOMAIN-SUFFIX,9gag.com
|
||||
- DOMAIN-SUFFIX,abc.com
|
||||
- DOMAIN-SUFFIX,abc.net.au
|
||||
- DOMAIN-SUFFIX,abebooks.com
|
||||
- DOMAIN-SUFFIX,ao3.org
|
||||
- DOMAIN-SUFFIX,apigee.com
|
||||
- DOMAIN-SUFFIX,apkcombo.com
|
||||
- DOMAIN-SUFFIX,apk-dl.com
|
||||
- DOMAIN-SUFFIX,apkfind.com
|
||||
- DOMAIN-SUFFIX,apkmirror.com
|
||||
- DOMAIN-SUFFIX,apkmonk.com
|
||||
- DOMAIN-SUFFIX,apkpure.com
|
||||
- DOMAIN-SUFFIX,aptoide.com
|
||||
- DOMAIN-SUFFIX,archive.is
|
||||
- DOMAIN-SUFFIX,archive.org
|
||||
- DOMAIN-SUFFIX,archiveofourown.com
|
||||
- DOMAIN-SUFFIX,archiveofourown.org
|
||||
- DOMAIN-SUFFIX,arte.tv
|
||||
- DOMAIN-SUFFIX,artstation.com
|
||||
- DOMAIN-SUFFIX,arukas.io
|
||||
- DOMAIN-SUFFIX,ask.com
|
||||
- DOMAIN-SUFFIX,avg.com
|
||||
- DOMAIN-SUFFIX,avgle.com
|
||||
- DOMAIN-SUFFIX,badoo.com
|
||||
- DOMAIN-SUFFIX,bandcamp.com
|
||||
- DOMAIN-SUFFIX,bandwagonhost.com
|
||||
- DOMAIN-SUFFIX,bangkokpost.com
|
||||
- DOMAIN-SUFFIX,bbc.com
|
||||
- DOMAIN-SUFFIX,behance.net
|
||||
- DOMAIN-SUFFIX,biggo.com.tw
|
||||
- DOMAIN-SUFFIX,bit.ly
|
||||
- DOMAIN-SUFFIX,bloglovin.com
|
||||
- DOMAIN-SUFFIX,bloomberg.cn
|
||||
- DOMAIN-SUFFIX,bloomberg.com
|
||||
- DOMAIN-SUFFIX,blubrry.com
|
||||
- DOMAIN-SUFFIX,book.com.tw
|
||||
- DOMAIN-SUFFIX,booklive.jp
|
||||
- DOMAIN-SUFFIX,books.com.tw
|
||||
- DOMAIN-SUFFIX,boslife.net
|
||||
- DOMAIN-SUFFIX,box.com
|
||||
- DOMAIN-SUFFIX,brave.com
|
||||
- DOMAIN-SUFFIX,businessinsider.com
|
||||
- DOMAIN-SUFFIX,buzzfeed.com
|
||||
- DOMAIN-SUFFIX,bwh1.net
|
||||
- DOMAIN-SUFFIX,castbox.fm
|
||||
- DOMAIN-SUFFIX,cbc.ca
|
||||
- DOMAIN-SUFFIX,cdw.com
|
||||
- DOMAIN-SUFFIX,change.org
|
||||
- DOMAIN-SUFFIX,channelnewsasia.com
|
||||
- DOMAIN-SUFFIX,ck101.com
|
||||
- DOMAIN-SUFFIX,clarionproject.org
|
||||
- DOMAIN-SUFFIX,cloudcone.com
|
||||
- DOMAIN-SUFFIX,clubhouseapi.com
|
||||
- DOMAIN-SUFFIX,clyp.it
|
||||
- DOMAIN-SUFFIX,cna.com.tw
|
||||
- DOMAIN-SUFFIX,comparitech.com
|
||||
- DOMAIN-SUFFIX,conoha.jp
|
||||
- DOMAIN-SUFFIX,crucial.com
|
||||
- DOMAIN-SUFFIX,cts.com.tw
|
||||
- DOMAIN-SUFFIX,cw.com.tw
|
||||
- DOMAIN-SUFFIX,cyberctm.com
|
||||
- DOMAIN-SUFFIX,cyclingnews.com
|
||||
- DOMAIN-SUFFIX,dailymotion.com
|
||||
- DOMAIN-SUFFIX,dailyview.tw
|
||||
- DOMAIN-SUFFIX,dandanzan.com
|
||||
- DOMAIN-SUFFIX,daum.net
|
||||
- DOMAIN-SUFFIX,daumcdn.net
|
||||
- DOMAIN-SUFFIX,dcard.tw
|
||||
- DOMAIN-SUFFIX,deadline.com
|
||||
- DOMAIN-SUFFIX,deepdiscount.com
|
||||
- DOMAIN-SUFFIX,depositphotos.com
|
||||
- DOMAIN-SUFFIX,deviantart.com
|
||||
- DOMAIN-SUFFIX,disconnect.me
|
||||
- DOMAIN-SUFFIX,disqus.com
|
||||
- DOMAIN-SUFFIX,dlercloud.com
|
||||
- DOMAIN-SUFFIX,dmhy.org
|
||||
- DOMAIN-SUFFIX,dns2go.com
|
||||
- DOMAIN-SUFFIX,dowjones.com
|
||||
- DOMAIN-SUFFIX,duckduckgo.com
|
||||
- DOMAIN-SUFFIX,duyaoss.com
|
||||
- DOMAIN-SUFFIX,dw.com
|
||||
- DOMAIN-SUFFIX,dynu.com
|
||||
- DOMAIN-SUFFIX,earthcam.com
|
||||
- DOMAIN-SUFFIX,ebookservice.tw
|
||||
- DOMAIN-SUFFIX,economist.com
|
||||
- DOMAIN-SUFFIX,edgecastcdn.net
|
||||
- DOMAIN-SUFFIX,edx-cdn.org
|
||||
- DOMAIN-SUFFIX,elpais.com
|
||||
- DOMAIN-SUFFIX,enanyang.my
|
||||
- DOMAIN-SUFFIX,encyclopedia.com
|
||||
- DOMAIN-SUFFIX,esoir.be
|
||||
- DOMAIN-SUFFIX,etherscan.io
|
||||
- DOMAIN-SUFFIX,euronews.com
|
||||
- DOMAIN-SUFFIX,evozi.com
|
||||
- DOMAIN-SUFFIX,exblog.jp
|
||||
- DOMAIN-SUFFIX,feeder.co
|
||||
- DOMAIN-SUFFIX,feedly.com
|
||||
- DOMAIN-SUFFIX,feedx.net
|
||||
- DOMAIN-SUFFIX,firech.at
|
||||
- DOMAIN-SUFFIX,flickr.com
|
||||
- DOMAIN-SUFFIX,flipboard.com
|
||||
- DOMAIN-SUFFIX,flitto.com
|
||||
- DOMAIN-SUFFIX,foreignpolicy.com
|
||||
- DOMAIN-SUFFIX,fortawesome.com
|
||||
- DOMAIN-SUFFIX,freetls.fastly.net
|
||||
- DOMAIN-SUFFIX,friday.tw
|
||||
- DOMAIN-SUFFIX,ft.com
|
||||
- DOMAIN-SUFFIX,ftchinese.com
|
||||
- DOMAIN-SUFFIX,ftimg.net
|
||||
- DOMAIN-SUFFIX,genius.com
|
||||
- DOMAIN-SUFFIX,getlantern.org
|
||||
- DOMAIN-SUFFIX,getsync.com
|
||||
- DOMAIN-SUFFIX,globalvoices.org
|
||||
- DOMAIN-SUFFIX,goo.ne.jp
|
||||
- DOMAIN-SUFFIX,goodreads.com
|
||||
- DOMAIN-SUFFIX,gov.tw
|
||||
- DOMAIN-SUFFIX,gravatar.com
|
||||
- DOMAIN-SUFFIX,greatfire.org
|
||||
- DOMAIN-SUFFIX,gumroad.com
|
||||
- DOMAIN-SUFFIX,heroku.com
|
||||
- DOMAIN-SUFFIX,hightail.com
|
||||
- DOMAIN-SUFFIX,hk01.com
|
||||
- DOMAIN-SUFFIX,hkbf.org
|
||||
- DOMAIN-SUFFIX,hkbookcity.com
|
||||
- DOMAIN-SUFFIX,hkej.com
|
||||
- DOMAIN-SUFFIX,hket.com
|
||||
- DOMAIN-SUFFIX,hootsuite.com
|
||||
- DOMAIN-SUFFIX,hudson.org
|
||||
- DOMAIN-SUFFIX,huffpost.com
|
||||
- DOMAIN-SUFFIX,hyread.com.tw
|
||||
- DOMAIN-SUFFIX,ibtimes.com
|
||||
- DOMAIN-SUFFIX,i-cable.com
|
||||
- DOMAIN-SUFFIX,icij.org
|
||||
- DOMAIN-SUFFIX,icoco.com
|
||||
- DOMAIN-SUFFIX,imgur.com
|
||||
- DOMAIN-SUFFIX,independent.co.uk
|
||||
- DOMAIN-SUFFIX,initiummall.com
|
||||
- DOMAIN-SUFFIX,inoreader.com
|
||||
- DOMAIN-SUFFIX,insecam.org
|
||||
- DOMAIN-SUFFIX,ipfs.io
|
||||
- DOMAIN-SUFFIX,issuu.com
|
||||
- DOMAIN-SUFFIX,istockphoto.com
|
||||
- DOMAIN-SUFFIX,japantimes.co.jp
|
||||
- DOMAIN-SUFFIX,jiji.com
|
||||
- DOMAIN-SUFFIX,jinx.com
|
||||
- DOMAIN-SUFFIX,jkforum.net
|
||||
- DOMAIN-SUFFIX,joinclubhouse.com
|
||||
- DOMAIN-SUFFIX,joinmastodon.org
|
||||
- DOMAIN-SUFFIX,justmysocks.net
|
||||
- DOMAIN-SUFFIX,justpaste.it
|
||||
- DOMAIN-SUFFIX,kadokawa.co.jp
|
||||
- DOMAIN-SUFFIX,kakao.com
|
||||
- DOMAIN-SUFFIX,kakaocorp.com
|
||||
- DOMAIN-SUFFIX,kik.com
|
||||
- DOMAIN-SUFFIX,kingkong.com.tw
|
||||
- DOMAIN-SUFFIX,knowyourmeme.com
|
||||
- DOMAIN-SUFFIX,kobo.com
|
||||
- DOMAIN-SUFFIX,kobobooks.com
|
||||
- DOMAIN-SUFFIX,kodingen.com
|
||||
- DOMAIN-SUFFIX,lemonde.fr
|
||||
- DOMAIN-SUFFIX,lepoint.fr
|
||||
- DOMAIN-SUFFIX,lihkg.com
|
||||
- DOMAIN-SUFFIX,limbopro.xyz
|
||||
- DOMAIN-SUFFIX,listennotes.com
|
||||
- DOMAIN-SUFFIX,livestream.com
|
||||
- DOMAIN-SUFFIX,logimg.jp
|
||||
- DOMAIN-SUFFIX,logmein.com
|
||||
- DOMAIN-SUFFIX,mail.ru
|
||||
- DOMAIN-SUFFIX,mailchimp.com
|
||||
- DOMAIN-SUFFIX,marc.info
|
||||
- DOMAIN-SUFFIX,matters.news
|
||||
- DOMAIN-SUFFIX,maying.co
|
||||
- DOMAIN-SUFFIX,medium.com
|
||||
- DOMAIN-SUFFIX,mega.nz
|
||||
- DOMAIN-SUFFIX,mergersandinquisitions.com
|
||||
- DOMAIN-SUFFIX,mingpao.com
|
||||
- DOMAIN-SUFFIX,mixi.jp
|
||||
- DOMAIN-SUFFIX,mixlr.com
|
||||
- DOMAIN-SUFFIX,mobile01.com
|
||||
- DOMAIN-SUFFIX,mubi.com
|
||||
- DOMAIN-SUFFIX,myspace.com
|
||||
- DOMAIN-SUFFIX,myspacecdn.com
|
||||
- DOMAIN-SUFFIX,nanyang.com
|
||||
- DOMAIN-SUFFIX,nationalinterest.org
|
||||
- DOMAIN-SUFFIX,naver.com
|
||||
- DOMAIN-SUFFIX,nbcnews.com
|
||||
- DOMAIN-SUFFIX,ndr.de
|
||||
- DOMAIN-SUFFIX,neowin.net
|
||||
- DOMAIN-SUFFIX,newstapa.org
|
||||
- DOMAIN-SUFFIX,nexitally.com
|
||||
- DOMAIN-SUFFIX,nhk.or.jp
|
||||
- DOMAIN-SUFFIX,nii.ac.jp
|
||||
- DOMAIN-SUFFIX,nikkei.com
|
||||
- DOMAIN-SUFFIX,nitter.net
|
||||
- DOMAIN-SUFFIX,nofile.io
|
||||
- DOMAIN-SUFFIX,notion.so
|
||||
- DOMAIN-SUFFIX,now.com
|
||||
- DOMAIN-SUFFIX,nrk.no
|
||||
- DOMAIN-SUFFIX,nuget.org
|
||||
- DOMAIN-SUFFIX,nyaa.si
|
||||
- DOMAIN-SUFFIX,ok.ru
|
||||
- DOMAIN-SUFFIX,on.cc
|
||||
- DOMAIN-SUFFIX,orientaldaily.com.my
|
||||
- DOMAIN-SUFFIX,overcast.fm
|
||||
- DOMAIN-SUFFIX,paltalk.com
|
||||
- DOMAIN-SUFFIX,parsevideo.com
|
||||
- DOMAIN-SUFFIX,pawoo.net
|
||||
- DOMAIN-SUFFIX,pbxes.com
|
||||
- DOMAIN-SUFFIX,pcdvd.com.tw
|
||||
- DOMAIN-SUFFIX,pchome.com.tw
|
||||
- DOMAIN-SUFFIX,pcloud.com
|
||||
- DOMAIN-SUFFIX,peing.net
|
||||
- DOMAIN-SUFFIX,picacomic.com
|
||||
- DOMAIN-SUFFIX,pinimg.com
|
||||
- DOMAIN-SUFFIX,player.fm
|
||||
- DOMAIN-SUFFIX,plurk.com
|
||||
- DOMAIN-SUFFIX,po18.tw
|
||||
- DOMAIN-SUFFIX,potato.im
|
||||
- DOMAIN-SUFFIX,potatso.com
|
||||
- DOMAIN-SUFFIX,prism-break.org
|
||||
- DOMAIN-SUFFIX,proxifier.com
|
||||
- DOMAIN-SUFFIX,pt.im
|
||||
- DOMAIN-SUFFIX,pts.org.tw
|
||||
- DOMAIN-SUFFIX,pubu.com.tw
|
||||
- DOMAIN-SUFFIX,pubu.tw
|
||||
- DOMAIN-SUFFIX,pureapk.com
|
||||
- DOMAIN-SUFFIX,quora.com
|
||||
- DOMAIN-SUFFIX,quoracdn.net
|
||||
- DOMAIN-SUFFIX,qz.com
|
||||
- DOMAIN-SUFFIX,radio.garden
|
||||
- DOMAIN-SUFFIX,rakuten.co.jp
|
||||
- DOMAIN-SUFFIX,rarbgprx.org
|
||||
- DOMAIN-SUFFIX,reabble.com
|
||||
- DOMAIN-SUFFIX,readingtimes.com.tw
|
||||
- DOMAIN-SUFFIX,readmoo.com
|
||||
- DOMAIN-SUFFIX,redbubble.com
|
||||
- DOMAIN-SUFFIX,resilio.com
|
||||
- DOMAIN-SUFFIX,reuters.com
|
||||
- DOMAIN-SUFFIX,reutersmedia.net
|
||||
- DOMAIN-SUFFIX,rfi.fr
|
||||
- DOMAIN-SUFFIX,roadshow.hk
|
||||
- DOMAIN-SUFFIX,rsshub.app
|
||||
- DOMAIN-SUFFIX,scmp.com
|
||||
- DOMAIN-SUFFIX,scribd.com
|
||||
- DOMAIN-SUFFIX,seatguru.com
|
||||
- DOMAIN-SUFFIX,shadowsocks.org
|
||||
- DOMAIN-SUFFIX,shindanmaker.com
|
||||
- DOMAIN-SUFFIX,shopee.tw
|
||||
- DOMAIN-SUFFIX,signal.org
|
||||
- DOMAIN-SUFFIX,sina.com.hk
|
||||
- DOMAIN-SUFFIX,slideshare.net
|
||||
- DOMAIN-SUFFIX,softfamous.com
|
||||
- DOMAIN-SUFFIX,spiegel.de
|
||||
- DOMAIN-SUFFIX,startpage.com
|
||||
- DOMAIN-SUFFIX,steamcommunity.com
|
||||
- DOMAIN-SUFFIX,steemit.com
|
||||
- DOMAIN-SUFFIX,steemitwallet.com
|
||||
- DOMAIN-SUFFIX,straitstimes.com
|
||||
- DOMAIN-SUFFIX,streamable.com
|
||||
- DOMAIN-SUFFIX,streema.com
|
||||
- DOMAIN-SUFFIX,substack.com
|
||||
- DOMAIN-SUFFIX,t66y.com
|
||||
- DOMAIN-SUFFIX,tapatalk.com
|
||||
- DOMAIN-SUFFIX,teco-hk.org
|
||||
- DOMAIN-SUFFIX,teco-mo.org
|
||||
- DOMAIN-SUFFIX,teddysun.com
|
||||
- DOMAIN-SUFFIX,textnow.me
|
||||
- DOMAIN-SUFFIX,theguardian.com
|
||||
- DOMAIN-SUFFIX,theinitium.com
|
||||
- DOMAIN-SUFFIX,themoviedb.org
|
||||
- DOMAIN-SUFFIX,thetvdb.com
|
||||
- DOMAIN-SUFFIX,time.com
|
||||
- DOMAIN-SUFFIX,tineye.com
|
||||
- DOMAIN-SUFFIX,tiny.cc
|
||||
- DOMAIN-SUFFIX,tinyurl.com
|
||||
- DOMAIN-SUFFIX,torproject.org
|
||||
- DOMAIN-SUFFIX,tradingview.com
|
||||
- DOMAIN-SUFFIX,tumblr.com
|
||||
- DOMAIN-SUFFIX,turbobit.net
|
||||
- DOMAIN-SUFFIX,tutanota.com
|
||||
- DOMAIN-SUFFIX,tvboxnow.com
|
||||
- DOMAIN-SUFFIX,udn.com
|
||||
- DOMAIN-SUFFIX,unseen.is
|
||||
- DOMAIN-SUFFIX,upmedia.mg
|
||||
- DOMAIN-SUFFIX,uptodown.com
|
||||
- DOMAIN-SUFFIX,urbandictionary.com
|
||||
- DOMAIN-SUFFIX,ustream.tv
|
||||
- DOMAIN-SUFFIX,uwants.com
|
||||
- DOMAIN-SUFFIX,v2ex.com
|
||||
- DOMAIN-SUFFIX,v2fly.org
|
||||
- DOMAIN-SUFFIX,v2ray.com
|
||||
- DOMAIN-SUFFIX,viber.com
|
||||
- DOMAIN-SUFFIX,videopress.com
|
||||
- DOMAIN-SUFFIX,vimeo.com
|
||||
- DOMAIN-SUFFIX,voachinese.com
|
||||
- DOMAIN-SUFFIX,voanews.com
|
||||
- DOMAIN-SUFFIX,voxer.com
|
||||
- DOMAIN-SUFFIX,vzw.com
|
||||
- DOMAIN-SUFFIX,w3schools.com
|
||||
- DOMAIN-SUFFIX,washingtonpost.com
|
||||
- DOMAIN-SUFFIX,wattpad.com
|
||||
- DOMAIN-SUFFIX,whoer.net
|
||||
- DOMAIN-SUFFIX,wikiwand.com
|
||||
- DOMAIN-SUFFIX,winudf.com
|
||||
- DOMAIN-SUFFIX,wire.com
|
||||
- DOMAIN-SUFFIX,wn.com
|
||||
- DOMAIN-SUFFIX,wordpress.com
|
||||
- DOMAIN-SUFFIX,worldcat.org
|
||||
- DOMAIN-SUFFIX,wsj.com
|
||||
- DOMAIN-SUFFIX,wsj.net
|
||||
- DOMAIN-SUFFIX,xhamster.com
|
||||
- DOMAIN-SUFFIX,xn--90wwvt03e.com
|
||||
- DOMAIN-SUFFIX,xn--i2ru8q2qg.com
|
||||
- DOMAIN-SUFFIX,xnxx.com
|
||||
- DOMAIN-SUFFIX,xvideos.com
|
||||
- DOMAIN-SUFFIX,yadi.sk
|
||||
- DOMAIN-SUFFIX,yahoo.com
|
||||
- DOMAIN-SUFFIX,yandex.ru
|
||||
- DOMAIN-SUFFIX,ycombinator.com
|
||||
- DOMAIN-SUFFIX,yesasia.com
|
||||
- DOMAIN-SUFFIX,yes-news.com
|
||||
- DOMAIN-SUFFIX,yomiuri.co.jp
|
||||
- DOMAIN-SUFFIX,you-get.org
|
||||
- DOMAIN-SUFFIX,zaobao.com
|
||||
- DOMAIN-SUFFIX,zello.com
|
||||
- DOMAIN-SUFFIX,zeronet.io
|
||||
- DOMAIN-SUFFIX,z-lib.org
|
||||
- DOMAIN-SUFFIX,zoom.us
|
||||
|
||||
- DOMAIN,cc.tvbs.com.tw
|
||||
- DOMAIN,clubhouse.pubnubapi.com
|
||||
- DOMAIN,ocsp.int-x3.letsencrypt.org
|
||||
- DOMAIN,us.weibo.com
|
||||
|
||||
- DOMAIN-SUFFIX,edu
|
||||
- DOMAIN-SUFFIX,gov
|
||||
- DOMAIN-SUFFIX,mil
|
||||
|
||||
# (IP Blackhole)
|
||||
# > Google
|
||||
- DOMAIN-SUFFIX,abc.xyz
|
||||
- DOMAIN-SUFFIX,advertisercommunity.com
|
||||
- DOMAIN-SUFFIX,ampproject.org
|
||||
- DOMAIN-SUFFIX,android.com
|
||||
- DOMAIN-SUFFIX,androidify.com
|
||||
- DOMAIN-SUFFIX,autodraw.com
|
||||
- DOMAIN-SUFFIX,capitalg.com
|
||||
- DOMAIN-SUFFIX,certificate-transparency.org
|
||||
- DOMAIN-SUFFIX,chrome.com
|
||||
- DOMAIN-SUFFIX,chromeexperiments.com
|
||||
- DOMAIN-SUFFIX,chromestatus.com
|
||||
- DOMAIN-SUFFIX,chromium.org
|
||||
- DOMAIN-SUFFIX,creativelab5.com
|
||||
- DOMAIN-SUFFIX,debug.com
|
||||
- DOMAIN-SUFFIX,deepmind.com
|
||||
- DOMAIN-SUFFIX,dialogflow.com
|
||||
- DOMAIN-SUFFIX,firebaseio.com
|
||||
- DOMAIN-SUFFIX,getmdl.io
|
||||
- DOMAIN-SUFFIX,ggpht.com
|
||||
- DOMAIN-SUFFIX,gmail.com
|
||||
- DOMAIN-SUFFIX,gmodules.com
|
||||
- DOMAIN-SUFFIX,godoc.org
|
||||
- DOMAIN-SUFFIX,gstatic.com
|
||||
- DOMAIN-SUFFIX,gv.com
|
||||
- DOMAIN-SUFFIX,gwtproject.org
|
||||
- DOMAIN-SUFFIX,itasoftware.com
|
||||
- DOMAIN-SUFFIX,madewithcode.com
|
||||
- DOMAIN-SUFFIX,material.io
|
||||
- DOMAIN-SUFFIX,page.link
|
||||
- DOMAIN-SUFFIX,polymer-project.org
|
||||
- DOMAIN-SUFFIX,recaptcha.net
|
||||
- DOMAIN-SUFFIX,shattered.io
|
||||
- DOMAIN-SUFFIX,synergyse.com
|
||||
- DOMAIN-SUFFIX,telephony.goog
|
||||
- DOMAIN-SUFFIX,tensorflow.org
|
||||
- DOMAIN-SUFFIX,tfhub.dev
|
||||
- DOMAIN-SUFFIX,tiltbrush.com
|
||||
- DOMAIN-SUFFIX,waveprotocol.org
|
||||
- DOMAIN-SUFFIX,waymo.com
|
||||
- DOMAIN-SUFFIX,webmproject.org
|
||||
- DOMAIN-SUFFIX,webrtc.org
|
||||
- DOMAIN-SUFFIX,whatbrowser.org
|
||||
- DOMAIN-SUFFIX,widevine.com
|
||||
- DOMAIN-SUFFIX,x.company
|
||||
- DOMAIN-SUFFIX,youtu.be
|
||||
- DOMAIN-SUFFIX,yt.be
|
||||
- DOMAIN-SUFFIX,ytimg.com
|
||||
# > Telegram
|
||||
- DOMAIN-SUFFIX,t.me
|
||||
- DOMAIN-SUFFIX,tdesktop.com
|
||||
- DOMAIN-SUFFIX,telegram.me
|
||||
- DOMAIN-SUFFIX,telesco.pe
|
||||
# > Facebook
|
||||
- DOMAIN-KEYWORD,.facebook.
|
||||
- DOMAIN-SUFFIX,facebookmail.com
|
||||
# > Others
|
||||
- DOMAIN-SUFFIX,noxinfluencer.com
|
||||
- DOMAIN-SUFFIX,smartmailcloud.com
|
||||
- DOMAIN-SUFFIX,weebly.com
|
||||
- DOMAIN-SUFFIX,twitter.jp
|
||||
|
||||
# (Region-Restricted Access Denied)
|
||||
# ---(Apple)---
|
||||
- DOMAIN-SUFFIX,appsto.re
|
||||
- DOMAIN,books.itunes.apple.com
|
||||
- DOMAIN-SUFFIX,smoot.apple.com
|
||||
- DOMAIN,beta.music.apple.com
|
||||
- DOMAIN,lookup-api.apple.com
|
||||
# > Web Preview
|
||||
- DOMAIN,apps.apple.com
|
||||
- DOMAIN,books.apple.com
|
||||
- DOMAIN,itunes.apple.com
|
||||
- DOMAIN,tv.apple.com
|
||||
# > Podcasts
|
||||
- DOMAIN,amp-api.podcasts.apple.com
|
||||
- DOMAIN,bookkeeper.itunes.apple.com
|
||||
# > News
|
||||
- DOMAIN,gateway.icloud.com
|
||||
- DOMAIN-SUFFIX,apple.news
|
||||
- DOMAIN,news-assets.apple.com
|
||||
- DOMAIN,news-client.apple.com
|
||||
- DOMAIN,news-client-search.apple.com
|
||||
- DOMAIN,news-edge.apple.com
|
||||
- DOMAIN,news-events.apple.com
|
||||
- DOMAIN,apple.comscoreresearch.com
|
||||
# ------
|
||||
# Google
|
||||
- DOMAIN-SUFFIX,go.dev
|
||||
- DOMAIN-SUFFIX,golang.org
|
||||
# > Others
|
||||
- DOMAIN-SUFFIX,aicoin.com
|
||||
- DOMAIN-SUFFIX,aimoon.com
|
||||
- DOMAIN-SUFFIX,bing.com
|
||||
- DOMAIN-SUFFIX,cccat.io
|
||||
- DOMAIN-SUFFIX,dubox.com
|
||||
- DOMAIN-SUFFIX,duboxcdn.com
|
||||
- DOMAIN-SUFFIX,ifixit.com
|
||||
- DOMAIN-SUFFIX,mangakakalot.com
|
||||
- DOMAIN-SUFFIX,shopeemobile.com
|
||||
- DOMAIN-SUFFIX,sushi.com
|
||||
|
||||
# (Network Jitter)
|
||||
# > Apple
|
||||
- DOMAIN,appleid.apple.com
|
||||
- DOMAIN,developer.apple.com
|
||||
- DOMAIN,www.icloud.com
|
||||
- DOMAIN,ocsp.apple.com
|
||||
# > DigiCert
|
||||
- DOMAIN,cacerts.digicert.com
|
||||
- DOMAIN,crl3.digicert.com
|
||||
- DOMAIN,crl4.digicert.com
|
||||
- DOMAIN,ocsp.digicert.com
|
||||
# > Others
|
||||
- DOMAIN-SUFFIX,cloudcone.com.cn
|
||||
- DOMAIN-SUFFIX,inkbunny.net
|
||||
- DOMAIN-SUFFIX,metapix.net
|
||||
- DOMAIN-SUFFIX,s3.amazonaws.com
|
||||
- DOMAIN-SUFFIX,zaobao.com.sg
|
||||
- DOMAIN,international-gfe.download.nvidia.com
|
@ -0,0 +1,37 @@
|
||||
payload:
|
||||
# > Google FCM
|
||||
- DOMAIN,alt1-mtalk.google.com
|
||||
- DOMAIN,alt2-mtalk.google.com
|
||||
- DOMAIN,alt3-mtalk.google.com
|
||||
- DOMAIN,alt4-mtalk.google.com
|
||||
- DOMAIN,alt5-mtalk.google.com
|
||||
- DOMAIN,alt6-mtalk.google.com
|
||||
- DOMAIN,alt7-mtalk.google.com
|
||||
- DOMAIN,alt8-mtalk.google.com
|
||||
- DOMAIN,mtalk.google.com
|
||||
- IP-CIDR,64.233.177.188/32,no-resolve
|
||||
- IP-CIDR,64.233.186.188/32,no-resolve
|
||||
- IP-CIDR,64.233.187.188/32,no-resolve
|
||||
- IP-CIDR,64.233.188.188/32,no-resolve
|
||||
- IP-CIDR,64.233.189.188/32,no-resolve
|
||||
- IP-CIDR,74.125.23.188/32,no-resolve
|
||||
- IP-CIDR,74.125.24.188/32,no-resolve
|
||||
- IP-CIDR,74.125.28.188/32,no-resolve
|
||||
- IP-CIDR,74.125.127.188/32,no-resolve
|
||||
- IP-CIDR,74.125.137.188/32,no-resolve
|
||||
- IP-CIDR,74.125.203.188/32,no-resolve
|
||||
- IP-CIDR,74.125.204.188/32,no-resolve
|
||||
- IP-CIDR,74.125.206.188/32,no-resolve
|
||||
- IP-CIDR,108.177.125.188/32,no-resolve
|
||||
- IP-CIDR,142.250.4.188/32,no-resolve
|
||||
- IP-CIDR,142.250.10.188/32,no-resolve
|
||||
- IP-CIDR,142.250.31.188/32,no-resolve
|
||||
- IP-CIDR,142.250.96.188/32,no-resolve
|
||||
- IP-CIDR,172.217.194.188/32,no-resolve
|
||||
- IP-CIDR,172.217.218.188/32,no-resolve
|
||||
- IP-CIDR,172.217.219.188/32,no-resolve
|
||||
- IP-CIDR,172.253.63.188/32,no-resolve
|
||||
- IP-CIDR,172.253.122.188/32,no-resolve
|
||||
- IP-CIDR,173.194.175.188/32,no-resolve
|
||||
- IP-CIDR,173.194.218.188/32,no-resolve
|
||||
- IP-CIDR,209.85.233.188/32,no-resolve
|
23
luci-app-openclash/root/etc/openclash/rule_provider/HBO
Normal file
23
luci-app-openclash/root/etc/openclash/rule_provider/HBO
Normal file
@ -0,0 +1,23 @@
|
||||
payload:
|
||||
# > HBO Max
|
||||
- PROCESS-NAME,com.hbo.hbonow
|
||||
- DOMAIN-SUFFIX,hbo.com
|
||||
- DOMAIN-SUFFIX,hbogo.com
|
||||
- DOMAIN-SUFFIX,hbonow.com
|
||||
- DOMAIN-SUFFIX,hbomax.com
|
||||
- DOMAIN-SUFFIX,hbomaxcdn.com
|
||||
|
||||
# > HBO GO
|
||||
- DOMAIN,44wilhpljf.execute-api.ap-southeast-1.amazonaws.com
|
||||
- DOMAIN,bcbolthboa-a.akamaihd.net
|
||||
- DOMAIN,cf-images.ap-southeast-1.prod.boltdns.net
|
||||
- DOMAIN,dai3fd1oh325y.cloudfront.net
|
||||
- DOMAIN,hboasia1-i.akamaihd.net
|
||||
- DOMAIN,hboasia2-i.akamaihd.net
|
||||
- DOMAIN,hboasia3-i.akamaihd.net
|
||||
- DOMAIN,hboasia4-i.akamaihd.net
|
||||
- DOMAIN,hboasia5-i.akamaihd.net
|
||||
- DOMAIN,players.brightcove.net
|
||||
- DOMAIN,s3-ap-southeast-1.amazonaws.com
|
||||
- DOMAIN-SUFFIX,hbogoasia.com
|
||||
- DOMAIN-SUFFIX,hbogoasia.hk
|
21
luci-app-openclash/root/etc/openclash/rule_provider/HBO_Go
Normal file
21
luci-app-openclash/root/etc/openclash/rule_provider/HBO_Go
Normal file
@ -0,0 +1,21 @@
|
||||
payload:
|
||||
# > HBO Max
|
||||
# - USER-AGENT,HBO%20GO%20PROD*
|
||||
|
||||
# - DOMAIN-KEYWORD,hboasia
|
||||
- DOMAIN-KEYWORD,hbogoasia
|
||||
|
||||
- DOMAIN-SUFFIX,hboasia.com
|
||||
- DOMAIN-SUFFIX,hbogo.co.th
|
||||
- DOMAIN-SUFFIX,hbogo.com
|
||||
- DOMAIN-SUFFIX,hbogo.eu
|
||||
- DOMAIN-SUFFIX,hbogoasia.com
|
||||
- DOMAIN-SUFFIX,hbogoasia.id
|
||||
- DOMAIN-SUFFIX,hbogoasia.ph
|
||||
|
||||
- DOMAIN,hbolb.onwardsmg.com
|
||||
- DOMAIN,hbounify-prod.evergent.com
|
||||
# - DOMAIN,bcbolthboa-a.akamaihd.net
|
||||
- DOMAIN,dai3fd1oh325y.cloudfront.net
|
||||
# - DOMAIN,hboasialive.akamaized.net
|
||||
# - DOMAIN,hbogoprod-vod.akamaized.net
|
11
luci-app-openclash/root/etc/openclash/rule_provider/HBO_Max
Normal file
11
luci-app-openclash/root/etc/openclash/rule_provider/HBO_Max
Normal file
@ -0,0 +1,11 @@
|
||||
payload:
|
||||
# > HBO Max
|
||||
# - USER-AGENT,HBOMAX*
|
||||
|
||||
- DOMAIN-SUFFIX,hbo.com
|
||||
- DOMAIN-SUFFIX,hbomax.com
|
||||
- DOMAIN-SUFFIX,hbomaxcdn.com
|
||||
- DOMAIN-SUFFIX,hbonow.com
|
||||
- DOMAIN-SUFFIX,hbomax.com
|
||||
|
||||
- DOMAIN,execute-api.ap-southeast-1.amazonaws.com
|
23
luci-app-openclash/root/etc/openclash/rule_provider/Hulu
Normal file
23
luci-app-openclash/root/etc/openclash/rule_provider/Hulu
Normal file
@ -0,0 +1,23 @@
|
||||
payload:
|
||||
# > Hulu
|
||||
- PROCESS-NAME,com.hulu.plus
|
||||
|
||||
- DOMAIN-SUFFIX,hulu.com
|
||||
- DOMAIN-SUFFIX,hulu.hb.omtrdc.net
|
||||
- DOMAIN-SUFFIX,hulu.sc.omtrdc.net
|
||||
- DOMAIN-SUFFIX,huluad.com
|
||||
- DOMAIN-SUFFIX,huluim.com
|
||||
- DOMAIN-SUFFIX,hulumail.com
|
||||
- DOMAIN-SUFFIX,huluqa.com
|
||||
- DOMAIN-SUFFIX,hulustream.com
|
||||
|
||||
- DOMAIN,cs428.wpc.edgecastcdn.net
|
||||
- DOMAIN,cws-hulu.conviva.com
|
||||
- DOMAIN,hulu.com.c.footprint.net
|
||||
- DOMAIN,hulu.map.fastly.net
|
||||
|
||||
- IP-CIDR,8.28.124.0/23
|
||||
- IP-CIDR,199.60.116.0/24
|
||||
- IP-CIDR,199.200.48.0/22
|
||||
- IP-CIDR,208.91.156.0/22
|
||||
- IP-CIDR6,2620:100:3000::/40
|
@ -0,0 +1,8 @@
|
||||
payload:
|
||||
# > Hulu(フールー)
|
||||
- PROCESS-NAME,jp.happyon.android
|
||||
- DOMAIN-SUFFIX,happyon.jp
|
||||
- DOMAIN-SUFFIX,hulu.jp
|
||||
- DOMAIN-SUFFIX,prod.hjholdings.tv
|
||||
- DOMAIN-SUFFIX,streaks.jp
|
||||
- DOMAIN-SUFFIX,yb.uncn.jp
|
31
luci-app-openclash/root/etc/openclash/rule_provider/IQI
Normal file
31
luci-app-openclash/root/etc/openclash/rule_provider/IQI
Normal file
@ -0,0 +1,31 @@
|
||||
payload:
|
||||
# > iQIYI Intl
|
||||
# - USER-AGENT,iQIYI*
|
||||
# - USER-AGENT,QIYIVideo*
|
||||
# - USER-AGENT,QYPlayer*
|
||||
# - USER-AGENT,QTP*
|
||||
# - PROCESS-NAME,com.iqiyi.i18n
|
||||
# - PROCESS-NAME,com.iqiyi.i18n.tv
|
||||
- DOMAIN-SUFFIX,inter.iqiyi.com
|
||||
- DOMAIN-SUFFIX,iq.com
|
||||
# 首页
|
||||
- DOMAIN-SUFFIX,intl.iqiyi.com
|
||||
# 历史
|
||||
- DOMAIN,intl-rcd.iqiyi.com
|
||||
# 收藏
|
||||
- DOMAIN,intl-subscription.iqiyi.com
|
||||
# 播放
|
||||
- IP-CIDR,104.85.165.17/32,no-resolve
|
||||
- IP-CIDR,110.238.107.47/32,no-resolve
|
||||
- IP-CIDR,118.26.32.162/32,no-resolve
|
||||
- IP-CIDR,159.138.102.146/32,no-resolve
|
||||
- IP-CIDR,184.51.102.0/24,no-resolve
|
||||
- IP-CIDR,203.74.95.130/28,no-resolve
|
||||
- IP-CIDR,203.80.97.203/32,no-resolve
|
||||
- IP-CIDR,210.71.227.202/32,no-resolve
|
||||
- IP-CIDR,23.200.145.146/32,no-resolve
|
||||
- IP-CIDR,23.210.215.186/32,no-resolve
|
||||
- IP-CIDR,23.211.15.0/24,no-resolve
|
||||
- IP-CIDR,23.219.172.0/24,no-resolve
|
||||
- IP-CIDR,23.40.242.10/32,no-resolve
|
||||
- IP-CIDR,23.59.252.0/24,no-resolve
|
12
luci-app-openclash/root/etc/openclash/rule_provider/IQYI
Normal file
12
luci-app-openclash/root/etc/openclash/rule_provider/IQYI
Normal file
@ -0,0 +1,12 @@
|
||||
payload:
|
||||
# > IQIYI
|
||||
# - USER-AGENT,*QIYI*
|
||||
# - USER-AGENT,iQiYi*
|
||||
- DOMAIN-SUFFIX,iqiyi.com
|
||||
- DOMAIN-SUFFIX,iqiyipic.com
|
||||
- DOMAIN-SUFFIX,iq.com
|
||||
- DOMAIN-SUFFIX,qy.net
|
||||
- DOMAIN-SUFFIX,gitv.tv
|
||||
- DOMAIN-SUFFIX,71.am
|
||||
- DOMAIN-KEYWORD,qiyi
|
||||
- DOMAIN,cache.video.iqiyi.com
|
6
luci-app-openclash/root/etc/openclash/rule_provider/JOOX
Normal file
6
luci-app-openclash/root/etc/openclash/rule_provider/JOOX
Normal file
@ -0,0 +1,6 @@
|
||||
payload:
|
||||
# > JOOX
|
||||
- PROCESS-NAME,com.tencent.ibg.joox
|
||||
- PROCESS-NAME,com.tencent.ibg.jooxtv
|
||||
- DOMAIN-SUFFIX,joox.com
|
||||
- DOMAIN-KEYWORD,jooxweb-api
|
12
luci-app-openclash/root/etc/openclash/rule_provider/Japonx
Normal file
12
luci-app-openclash/root/etc/openclash/rule_provider/Japonx
Normal file
@ -0,0 +1,12 @@
|
||||
payload:
|
||||
# > Japonx
|
||||
- DOMAIN-KEYWORD,japonx
|
||||
- DOMAIN-KEYWORD,japronx
|
||||
- DOMAIN-SUFFIX,japonx.com
|
||||
- DOMAIN-SUFFIX,japonx.tv
|
||||
- DOMAIN-SUFFIX,japonx.net
|
||||
- DOMAIN-SUFFIX,japonx.vip
|
||||
- DOMAIN-SUFFIX,japronx.com
|
||||
- DOMAIN-SUFFIX,japronx.tv
|
||||
- DOMAIN-SUFFIX,japronx.net
|
||||
- DOMAIN-SUFFIX,japronx.vip
|
@ -0,0 +1,5 @@
|
||||
payload:
|
||||
# > KKBOX
|
||||
- DOMAIN-SUFFIX,kkbox.com
|
||||
- DOMAIN-SUFFIX,kkbox.com.tw
|
||||
- DOMAIN-SUFFIX,kfs.io
|
6
luci-app-openclash/root/etc/openclash/rule_provider/KKTV
Normal file
6
luci-app-openclash/root/etc/openclash/rule_provider/KKTV
Normal file
@ -0,0 +1,6 @@
|
||||
payload:
|
||||
# > KKTV
|
||||
- PROCESS-NAME,com.kktv.kktv
|
||||
- DOMAIN-SUFFIX,kktv.me
|
||||
- DOMAIN-SUFFIX,kktv.com.tw
|
||||
- DOMAIN,kktv-theater.kk.stream
|
9
luci-app-openclash/root/etc/openclash/rule_provider/LAN
Normal file
9
luci-app-openclash/root/etc/openclash/rule_provider/LAN
Normal file
@ -0,0 +1,9 @@
|
||||
payload:
|
||||
- DOMAIN-SUFFIX,local
|
||||
- IP-CIDR,127.0.0.0/8
|
||||
- IP-CIDR,172.16.0.0/12
|
||||
- IP-CIDR,192.168.0.0/16
|
||||
- IP-CIDR,10.0.0.0/8
|
||||
- IP-CIDR,17.0.0.0/8
|
||||
- IP-CIDR,100.64.0.0/10
|
||||
- IP-CIDR6,fe80::/10
|
3
luci-app-openclash/root/etc/openclash/rule_provider/Letv
Normal file
3
luci-app-openclash/root/etc/openclash/rule_provider/Letv
Normal file
@ -0,0 +1,3 @@
|
||||
payload:
|
||||
# > letv
|
||||
- DOMAIN-SUFFIX,api.mob.app.letv.com
|
@ -0,0 +1,6 @@
|
||||
payload:
|
||||
# > Line TV
|
||||
# - USER-AGENT,LINE*
|
||||
- DOMAIN-SUFFIX,d3c7rimkq79yfu.cloudfront.net
|
||||
- DOMAIN-SUFFIX,linetv.tw
|
||||
- DOMAIN-SUFFIX,profile.line-scdn.net
|
608
luci-app-openclash/root/etc/openclash/rule_provider/Microsoft
Normal file
608
luci-app-openclash/root/etc/openclash/rule_provider/Microsoft
Normal file
@ -0,0 +1,608 @@
|
||||
payload:
|
||||
# > Microsoft
|
||||
- DOMAIN-SUFFIX,here.com
|
||||
- DOMAIN-SUFFIX,here.net
|
||||
- DOMAIN-SUFFIX,heremaps.cn
|
||||
- DOMAIN-SUFFIX,ovi.com.cn
|
||||
|
||||
- DOMAIN-SUFFIX,azure
|
||||
- DOMAIN-SUFFIX,azure-apim.net
|
||||
- DOMAIN-SUFFIX,azure-dns.com
|
||||
- DOMAIN-SUFFIX,azure-dns.info
|
||||
- DOMAIN-SUFFIX,azure-dns.net
|
||||
- DOMAIN-SUFFIX,azure-dns.org
|
||||
- DOMAIN-SUFFIX,azure-mobile.net
|
||||
- DOMAIN-SUFFIX,azure-sphere.com
|
||||
- DOMAIN-SUFFIX,azure-test.net
|
||||
- DOMAIN-SUFFIX,azure.cn
|
||||
- DOMAIN-SUFFIX,azure.com
|
||||
- DOMAIN-SUFFIX,azure.net
|
||||
- DOMAIN-SUFFIX,azurecomcdn.net
|
||||
- DOMAIN-SUFFIX,azurecontainer.io
|
||||
- DOMAIN-SUFFIX,azurecosmos.net
|
||||
- DOMAIN-SUFFIX,azurecosmosdb.com
|
||||
- DOMAIN-SUFFIX,azurecosmosdb.info
|
||||
- DOMAIN-SUFFIX,azurecosmosdb.net
|
||||
- DOMAIN-SUFFIX,azuredatabricks.net
|
||||
- DOMAIN-SUFFIX,azuredevopslaunch.com
|
||||
- DOMAIN-SUFFIX,azuredigitaltwin.com
|
||||
- DOMAIN-SUFFIX,azuredigitaltwins.com
|
||||
- DOMAIN-SUFFIX,azuredigitaltwins.net
|
||||
- DOMAIN-SUFFIX,azuredns-prd.info
|
||||
- DOMAIN-SUFFIX,azuredns-prd.org
|
||||
- DOMAIN-SUFFIX,azureedge-test.net
|
||||
- DOMAIN-SUFFIX,azureedge.net
|
||||
- DOMAIN-SUFFIX,azurefd.net
|
||||
- DOMAIN-SUFFIX,azurefd.us
|
||||
- DOMAIN-SUFFIX,azureiotcentral.com
|
||||
- DOMAIN-SUFFIX,azureiotsolutions.com
|
||||
- DOMAIN-SUFFIX,azureiotsuite.com
|
||||
- DOMAIN-SUFFIX,azureplanetscale.info
|
||||
- DOMAIN-SUFFIX,azureplanetscale.net
|
||||
- DOMAIN-SUFFIX,azureserviceprofiler.com
|
||||
- DOMAIN-SUFFIX,azuresmartspaces.net
|
||||
- DOMAIN-SUFFIX,azurestackvalidation.com
|
||||
- DOMAIN-SUFFIX,azurewebsites.net
|
||||
- DOMAIN-SUFFIX,chinacloudapi.cn
|
||||
- DOMAIN-SUFFIX,chinacloudapp.cn
|
||||
- DOMAIN-SUFFIX,chinacloudsites.cn
|
||||
- DOMAIN-SUFFIX,cosmosdb.info
|
||||
- DOMAIN-SUFFIX,cosmosdb.net
|
||||
- DOMAIN-SUFFIX,devopsms.com
|
||||
- DOMAIN-SUFFIX,gotcosmos.com
|
||||
- DOMAIN-SUFFIX,microsofteca.com
|
||||
- DOMAIN-SUFFIX,microsoftiotcentral.com
|
||||
- DOMAIN-SUFFIX,serverlesslibrary.net
|
||||
- DOMAIN-SUFFIX,signalr.net
|
||||
- DOMAIN-SUFFIX,tryfunctions.com
|
||||
- DOMAIN-SUFFIX,windowsazure.cn
|
||||
- DOMAIN-SUFFIX,windowsazure.com
|
||||
- DOMAIN-SUFFIX,azure.microsoft.com
|
||||
- DOMAIN-SUFFIX,azuremarketplace.microsoft.com
|
||||
|
||||
- DOMAIN-SUFFIX,bbing.com
|
||||
- DOMAIN-SUFFIX,bibg.com
|
||||
- DOMAIN-SUFFIX,biing.com
|
||||
- DOMAIN-SUFFIX,binb.com
|
||||
- DOMAIN-SUFFIX,binf.com
|
||||
- DOMAIN-SUFFIX,bing
|
||||
- DOMAIN-SUFFIX,bing.com
|
||||
- DOMAIN-SUFFIX,bing.com.cn
|
||||
- DOMAIN-SUFFIX,bing.net
|
||||
- DOMAIN-SUFFIX,bing123.com
|
||||
- DOMAIN-SUFFIX,bing135.com
|
||||
- DOMAIN-SUFFIX,bing4.com
|
||||
- DOMAIN-SUFFIX,bingads.com
|
||||
- DOMAIN-SUFFIX,bingagencyawards.com
|
||||
- DOMAIN-SUFFIX,bingapis.com
|
||||
- DOMAIN-SUFFIX,bingapistatistics.com
|
||||
- DOMAIN-SUFFIX,binginternal.com
|
||||
- DOMAIN-SUFFIX,bingit.net
|
||||
- DOMAIN-SUFFIX,bingiton.com
|
||||
- DOMAIN-SUFFIX,bingj.com
|
||||
- DOMAIN-SUFFIX,bingpix.com
|
||||
- DOMAIN-SUFFIX,bingpk.com
|
||||
- DOMAIN-SUFFIX,bings.com
|
||||
- DOMAIN-SUFFIX,bingsandbox.com
|
||||
- DOMAIN-SUFFIX,bingtoolbar.com
|
||||
- DOMAIN-SUFFIX,bingtranslator.com
|
||||
- DOMAIN-SUFFIX,bingvisualsearch.com
|
||||
- DOMAIN-SUFFIX,bingworld.com
|
||||
- DOMAIN-SUFFIX,biying.cn
|
||||
- DOMAIN-SUFFIX,biying.com
|
||||
- DOMAIN-SUFFIX,biying.com.cn
|
||||
- DOMAIN-SUFFIX,bluehatnights.com
|
||||
- DOMAIN-SUFFIX,dictate.ms
|
||||
- DOMAIN-SUFFIX,discoverbing.com
|
||||
- DOMAIN-SUFFIX,explorebing.com
|
||||
- DOMAIN-SUFFIX,flipwithsurface.com
|
||||
- DOMAIN-SUFFIX,mapblast.com
|
||||
- DOMAIN-SUFFIX,mappoint.com
|
||||
- DOMAIN-SUFFIX,masalladeloslimites.com
|
||||
- DOMAIN-SUFFIX,microsoft-give.com
|
||||
- DOMAIN-SUFFIX,microsoftcloudsummit.com
|
||||
- DOMAIN-SUFFIX,microsoftdiplomados.com
|
||||
- DOMAIN-SUFFIX,microsoftlatamholiday.com
|
||||
- DOMAIN-SUFFIX,microsoftmxfilantropia.com
|
||||
- DOMAIN-SUFFIX,microsoftpartnersolutions.com
|
||||
- DOMAIN-SUFFIX,msnmaps.com
|
||||
- DOMAIN-SUFFIX,msunlimitedcloudsummit.com
|
||||
- DOMAIN-SUFFIX,myhomemsn.com
|
||||
- DOMAIN-SUFFIX,office365love.com
|
||||
- DOMAIN-SUFFIX,office365tw.com
|
||||
- DOMAIN-SUFFIX,osdinfra.net
|
||||
- DOMAIN-SUFFIX,renovacionoffice.com
|
||||
- DOMAIN-SUFFIX,sprinklesapp.com
|
||||
- DOMAIN-SUFFIX,working-bing-int.com
|
||||
- DOMAIN-SUFFIX,bj1.api.bing.com
|
||||
- DOMAIN-SUFFIX,emoi-cncdn.bing.com
|
||||
- DOMAIN-SUFFIX,cn.bing.com
|
||||
- DOMAIN-SUFFIX,cn.bing.net
|
||||
- DOMAIN-SUFFIX,ditu.live.com
|
||||
|
||||
- DOMAIN-SUFFIX,a-msedge.net
|
||||
- DOMAIN-SUFFIX,c-msedge.net
|
||||
- DOMAIN-SUFFIX,e-msedge.net
|
||||
- DOMAIN-SUFFIX,edgesuite.net
|
||||
- DOMAIN-SUFFIX,evoke-windowsservices-tas.msedge
|
||||
- DOMAIN-SUFFIX,microsoftedge.com
|
||||
- DOMAIN-SUFFIX,microsoftedgeinsider.com
|
||||
- DOMAIN-SUFFIX,msedge.net
|
||||
- DOMAIN-SUFFIX,s-msedge.net
|
||||
|
||||
- DOMAIN-SUFFIX,femalefounderscomp.com
|
||||
- DOMAIN-SUFFIX,m12.vc
|
||||
|
||||
- DOMAIN-SUFFIX,adaptivecards.io
|
||||
- DOMAIN-SUFFIX,api-extractor.com
|
||||
- DOMAIN-SUFFIX,apisof.net
|
||||
- DOMAIN-SUFFIX,appcenter.ms
|
||||
- DOMAIN-SUFFIX,blazor.net
|
||||
- DOMAIN-SUFFIX,botframework.com
|
||||
- DOMAIN-SUFFIX,codethemicrobit.com
|
||||
- DOMAIN-SUFFIX,devopsassessment.net
|
||||
- DOMAIN-SUFFIX,dot.net
|
||||
- DOMAIN-SUFFIX,exp-tas.com
|
||||
- DOMAIN-SUFFIX,gamesstack.com
|
||||
- DOMAIN-SUFFIX,graphengine.io
|
||||
- DOMAIN-SUFFIX,insiderdevtour.com
|
||||
- DOMAIN-SUFFIX,jwt.ms
|
||||
- DOMAIN-SUFFIX,microbit.org
|
||||
- DOMAIN-SUFFIX,microsoftadc.com
|
||||
- DOMAIN-SUFFIX,microsoftgamestack.com
|
||||
- DOMAIN-SUFFIX,microsoftiotinsiderlabs.com
|
||||
- DOMAIN-SUFFIX,microsoftreactor.cn
|
||||
- DOMAIN-SUFFIX,microsoftreactor.com.cn
|
||||
- DOMAIN-SUFFIX,microsoftreactor.info
|
||||
- DOMAIN-SUFFIX,microsoftreactor.net
|
||||
- DOMAIN-SUFFIX,microsoftreactor.org
|
||||
- DOMAIN-SUFFIX,microsoftsilverlight.com
|
||||
- DOMAIN-SUFFIX,microsoftsilverlight.net
|
||||
- DOMAIN-SUFFIX,microsoftsilverlight.org
|
||||
- DOMAIN-SUFFIX,microsoftsqlserver.com
|
||||
- DOMAIN-SUFFIX,mmdnn.com
|
||||
- DOMAIN-SUFFIX,mono-project.com
|
||||
- DOMAIN-SUFFIX,msdn.com
|
||||
- DOMAIN-SUFFIX,msinnovationchallenge.com
|
||||
- DOMAIN-SUFFIX,mspairlift.com
|
||||
- DOMAIN-SUFFIX,msropendata.com
|
||||
- DOMAIN-SUFFIX,nuget.org
|
||||
- DOMAIN-SUFFIX,nugettest.org
|
||||
- DOMAIN-SUFFIX,opentranslatorstothings.org
|
||||
- DOMAIN-SUFFIX,poshtestgallery.com
|
||||
- DOMAIN-SUFFIX,pwabuilder.com
|
||||
- DOMAIN-SUFFIX,reactorms.com.cn
|
||||
- DOMAIN-SUFFIX,sankie.net
|
||||
- DOMAIN-SUFFIX,sqlserveronlinux.com
|
||||
- DOMAIN-SUFFIX,timelinestoryteller.com
|
||||
- DOMAIN-SUFFIX,uwpcommunitytoolkit.com
|
||||
- DOMAIN-SUFFIX,vfsforgit.com
|
||||
- DOMAIN-SUFFIX,vfsforgit.org
|
||||
- DOMAIN-SUFFIX,xamarin.com
|
||||
- DOMAIN-SUFFIX,developer.microsoft.com
|
||||
- DOMAIN-SUFFIX,dtlgalleryint.cloudapp.net
|
||||
- DOMAIN-SUFFIX,poshtestgallery.cloudapp.net
|
||||
- DOMAIN-SUFFIX,psg-int-centralus.cloudapp.net
|
||||
- DOMAIN-SUFFIX,psg-int-eastus.cloudapp.net
|
||||
|
||||
- DOMAIN-SUFFIX,microsoft-online.cn
|
||||
- DOMAIN-SUFFIX,microsoft-online.com.cn
|
||||
- DOMAIN-SUFFIX,microsoftnews.cc
|
||||
- DOMAIN-SUFFIX,microsoftnews.cn
|
||||
- DOMAIN-SUFFIX,microsoftnews.com
|
||||
- DOMAIN-SUFFIX,microsoftnews.net
|
||||
- DOMAIN-SUFFIX,microsoftnews.org
|
||||
- DOMAIN-SUFFIX,microsoftnewsforkids.com
|
||||
- DOMAIN-SUFFIX,microsoftnewsforkids.net
|
||||
- DOMAIN-SUFFIX,microsoftnewsforkids.org
|
||||
- DOMAIN-SUFFIX,microsoftnewskids.com
|
||||
- DOMAIN-SUFFIX,microsoftnewskids.net
|
||||
- DOMAIN-SUFFIX,microsoftnewskids.org
|
||||
- DOMAIN-SUFFIX,microsoftol.com
|
||||
- DOMAIN-SUFFIX,microsoftol.com.cn
|
||||
- DOMAIN-SUFFIX,microsoftusercontent.com
|
||||
- DOMAIN-SUFFIX,msn.cn
|
||||
- DOMAIN-SUFFIX,msn.com
|
||||
- DOMAIN-SUFFIX,msn.com.cn
|
||||
- DOMAIN-SUFFIX,msn.com.nsatc.net
|
||||
- DOMAIN-SUFFIX,msn.com.tw
|
||||
- DOMAIN-SUFFIX,msnewskids.com
|
||||
- DOMAIN-SUFFIX,msnewskids.net
|
||||
- DOMAIN-SUFFIX,msnewskids.org
|
||||
- DOMAIN-SUFFIX,msnkids.com
|
||||
- DOMAIN-SUFFIX,winmp.cn
|
||||
|
||||
- DOMAIN-SUFFIX,o365cn.com
|
||||
- DOMAIN-SUFFIX,o365files.cn
|
||||
- DOMAIN-SUFFIX,o365weve-dev.com
|
||||
- DOMAIN-SUFFIX,o365weve-ppe.com
|
||||
- DOMAIN-SUFFIX,o365weve.com
|
||||
- DOMAIN-SUFFIX,office
|
||||
- DOMAIN-SUFFIX,office.com
|
||||
- DOMAIN-SUFFIX,office.net
|
||||
- DOMAIN-SUFFIX,office365.com
|
||||
- DOMAIN-SUFFIX,officedev.cn
|
||||
|
||||
- DOMAIN-SUFFIX,1drv.com
|
||||
- DOMAIN-SUFFIX,1drv.ms
|
||||
- DOMAIN-SUFFIX,livefilestore.com
|
||||
- DOMAIN-SUFFIX,onedrive.co
|
||||
- DOMAIN-SUFFIX,onedrive.co.uk
|
||||
- DOMAIN-SUFFIX,onedrive.com
|
||||
- DOMAIN-SUFFIX,onedrive.eu
|
||||
- DOMAIN-SUFFIX,onedrive.live.com
|
||||
- DOMAIN-SUFFIX,onedrive.net
|
||||
- DOMAIN-SUFFIX,onedrive.org
|
||||
- DOMAIN-SUFFIX,storage.live.com
|
||||
|
||||
- DOMAIN-SUFFIX,groupme.com
|
||||
- DOMAIN-SUFFIX,skype.com
|
||||
- DOMAIN-SUFFIX,skype.net
|
||||
- DOMAIN-SUFFIX,skypeassets.com
|
||||
- DOMAIN-SUFFIX,skypeassets.net
|
||||
- DOMAIN-SUFFIX,skypeforbusiness.com
|
||||
|
||||
- DOMAIN-SUFFIX,sway-cdn.com
|
||||
- DOMAIN-SUFFIX,sway-extensions.com
|
||||
- DOMAIN-SUFFIX,sway.com
|
||||
|
||||
- DOMAIN-SUFFIX,visualstudio-staging.com
|
||||
- DOMAIN-SUFFIX,visualstudio.co
|
||||
- DOMAIN-SUFFIX,visualstudio.co.uk
|
||||
- DOMAIN-SUFFIX,visualstudio.com
|
||||
- DOMAIN-SUFFIX,visualstudio.eu
|
||||
- DOMAIN-SUFFIX,visualstudio.net
|
||||
- DOMAIN-SUFFIX,vsassets.io
|
||||
- DOMAIN-SUFFIX,vscode-unpkg.net
|
||||
- DOMAIN-SUFFIX,vscode-webview.net
|
||||
- DOMAIN-SUFFIX,vscode.dev
|
||||
|
||||
- DOMAIN-SUFFIX,live.cn
|
||||
- DOMAIN-SUFFIX,live.com.akadns.net
|
||||
- DOMAIN-SUFFIX,sclive.net
|
||||
- DOMAIN-SUFFIX,windowslive.cn
|
||||
- DOMAIN-SUFFIX,wlxrs.com
|
||||
|
||||
- DOMAIN-SUFFIX,aicscience.com
|
||||
- DOMAIN-SUFFIX,mmais.com.cn
|
||||
- DOMAIN-SUFFIX,msminico.cn
|
||||
- DOMAIN-SUFFIX,msminico.com.cn
|
||||
- DOMAIN-SUFFIX,msxiaobing.com
|
||||
- DOMAIN-SUFFIX,msxiaoice.com
|
||||
- DOMAIN-SUFFIX,msxiaona.cn
|
||||
- DOMAIN-SUFFIX,officeplus.cn
|
||||
- DOMAIN-SUFFIX,renlifang.com
|
||||
|
||||
- DOMAIN-SUFFIX,cortana.ai
|
||||
- DOMAIN-SUFFIX,cortanaanalytics.com
|
||||
- DOMAIN-SUFFIX,cortanaskills.com
|
||||
|
||||
- DOMAIN-SUFFIX,forzamotorsport.net
|
||||
- DOMAIN-SUFFIX,forzaracingchampionship.com
|
||||
- DOMAIN-SUFFIX,forzarc.com
|
||||
- DOMAIN-SUFFIX,gamepass.com
|
||||
- DOMAIN-SUFFIX,msgamestudios.com
|
||||
- DOMAIN-SUFFIX,orithegame.com
|
||||
- DOMAIN-SUFFIX,renovacionxboxlive.com
|
||||
- DOMAIN-SUFFIX,tellmewhygame.com
|
||||
- DOMAIN-SUFFIX,xbox.co
|
||||
- DOMAIN-SUFFIX,xbox.com
|
||||
- DOMAIN-SUFFIX,xbox.eu
|
||||
- DOMAIN-SUFFIX,xbox.org
|
||||
- DOMAIN-SUFFIX,xbox360.co
|
||||
- DOMAIN-SUFFIX,xbox360.com
|
||||
- DOMAIN-SUFFIX,xbox360.eu
|
||||
- DOMAIN-SUFFIX,xbox360.org
|
||||
- DOMAIN-SUFFIX,xboxab.com
|
||||
- DOMAIN-SUFFIX,xboxgamepass.com
|
||||
- DOMAIN-SUFFIX,xboxgamestudios.com
|
||||
- DOMAIN-SUFFIX,xboxlive.cn
|
||||
- DOMAIN-SUFFIX,xboxlive.com
|
||||
- DOMAIN-SUFFIX,xboxone.co
|
||||
- DOMAIN-SUFFIX,xboxone.com
|
||||
- DOMAIN-SUFFIX,xboxone.eu
|
||||
- DOMAIN-SUFFIX,xboxplayanywhere.com
|
||||
- DOMAIN-SUFFIX,xboxservices.com
|
||||
- DOMAIN-SUFFIX,xboxstudios.com
|
||||
- DOMAIN-SUFFIX,xbx.lv
|
||||
|
||||
- DOMAIN-SUFFIX,callersbane.com
|
||||
- DOMAIN-SUFFIX,minecraft.net
|
||||
- DOMAIN-SUFFIX,minecraftshop.com
|
||||
- DOMAIN-SUFFIX,mojang.com
|
||||
|
||||
- DOMAIN-SUFFIX,beth.games
|
||||
- DOMAIN-SUFFIX,bethesda.net
|
||||
- DOMAIN-SUFFIX,bethesdagamestudios.com
|
||||
- DOMAIN-SUFFIX,bethsoft.com
|
||||
|
||||
- DOMAIN-SUFFIX,Applicationinsights.io
|
||||
- DOMAIN-SUFFIX,Applicationinsights.net
|
||||
- DOMAIN-SUFFIX,aadrm.com
|
||||
- DOMAIN-SUFFIX,acompli.net
|
||||
- DOMAIN-SUFFIX,aka.ms
|
||||
- DOMAIN-SUFFIX,ankarazirvesi2018.com
|
||||
- DOMAIN-SUFFIX,applicationinsights.io
|
||||
- DOMAIN-SUFFIX,applicationinsights.net
|
||||
- DOMAIN-SUFFIX,aria.ms
|
||||
- DOMAIN-SUFFIX,asp.net
|
||||
- DOMAIN-SUFFIX,aspnetcdn.com
|
||||
- DOMAIN-SUFFIX,assets-yammer.com
|
||||
- DOMAIN-SUFFIX,azurerms.com
|
||||
- DOMAIN-SUFFIX,binads.com
|
||||
- DOMAIN-SUFFIX,bluehatil.com
|
||||
- DOMAIN-SUFFIX,boswp.com
|
||||
- DOMAIN-SUFFIX,brazilpartneruniversity.com
|
||||
- DOMAIN-SUFFIX,breakdown.me
|
||||
- DOMAIN-SUFFIX,centralvalidation.com
|
||||
- DOMAIN-SUFFIX,ch9.ms
|
||||
- DOMAIN-SUFFIX,charticulator.com
|
||||
- DOMAIN-SUFFIX,cloudapp.net
|
||||
- DOMAIN-SUFFIX,cloudappsecurity.com
|
||||
- DOMAIN-SUFFIX,crmdynint-gcc.com
|
||||
- DOMAIN-SUFFIX,crmdynint.com
|
||||
- DOMAIN-SUFFIX,crossborderexpansion.com
|
||||
- DOMAIN-SUFFIX,docs.com
|
||||
- DOMAIN-SUFFIX,dwh5.com
|
||||
- DOMAIN-SUFFIX,dynamics.com
|
||||
- DOMAIN-SUFFIX,efproject.net
|
||||
- DOMAIN-SUFFIX,engkoo.com
|
||||
- DOMAIN-SUFFIX,fasttrackreadysupport.com
|
||||
- DOMAIN-SUFFIX,fluidpreview.com
|
||||
- DOMAIN-SUFFIX,footprintdns.com
|
||||
- DOMAIN-SUFFIX,gameuxmasterguide.com
|
||||
- DOMAIN-SUFFIX,gears5.com
|
||||
- DOMAIN-SUFFIX,gearspop.com
|
||||
- DOMAIN-SUFFIX,gearstactics.com
|
||||
- DOMAIN-SUFFIX,getmicrosoftkey.com
|
||||
- DOMAIN-SUFFIX,gfx.ms
|
||||
- DOMAIN-SUFFIX,gigjam.com
|
||||
- DOMAIN-SUFFIX,helpshift.com
|
||||
- DOMAIN-SUFFIX,hockeyapp.net
|
||||
- DOMAIN-SUFFIX,hololens.com
|
||||
- DOMAIN-SUFFIX,hotmail
|
||||
- DOMAIN-SUFFIX,hotmail.co
|
||||
- DOMAIN-SUFFIX,hotmail.com
|
||||
- DOMAIN-SUFFIX,hotmail.eu
|
||||
- DOMAIN-SUFFIX,hotmail.net
|
||||
- DOMAIN-SUFFIX,hotmail.org
|
||||
- DOMAIN-SUFFIX,hummingbird.ms
|
||||
- DOMAIN-SUFFIX,ie10.com
|
||||
- DOMAIN-SUFFIX,ie11.com
|
||||
- DOMAIN-SUFFIX,ie8.co
|
||||
- DOMAIN-SUFFIX,ie9.com
|
||||
- DOMAIN-SUFFIX,imaginecup.pl
|
||||
- DOMAIN-SUFFIX,img-prod-cms-rt-microsoft-com
|
||||
- DOMAIN-SUFFIX,ingads.com
|
||||
- DOMAIN-SUFFIX,internetexplorer.co
|
||||
- DOMAIN-SUFFIX,internetexplorer.com
|
||||
- DOMAIN-SUFFIX,intunewiki.com
|
||||
- DOMAIN-SUFFIX,iotinactionevents.com
|
||||
- DOMAIN-SUFFIX,joinms.com
|
||||
- DOMAIN-SUFFIX,joinms.com.cn
|
||||
- DOMAIN-SUFFIX,joinmva.com
|
||||
- DOMAIN-SUFFIX,kidgrid.tv
|
||||
- DOMAIN-SUFFIX,kumo.com
|
||||
- DOMAIN-SUFFIX,latampartneruniversity.com
|
||||
- DOMAIN-SUFFIX,live.com
|
||||
- DOMAIN-SUFFIX,live.com.au
|
||||
- DOMAIN-SUFFIX,live.eu
|
||||
- DOMAIN-SUFFIX,live.net
|
||||
- DOMAIN-SUFFIX,livingyourambition.com
|
||||
- DOMAIN-SUFFIX,localytics.com
|
||||
- DOMAIN-SUFFIX,lync.com
|
||||
- DOMAIN-SUFFIX,makecode.org
|
||||
- DOMAIN-SUFFIX,managedmeetingrooms.com
|
||||
- DOMAIN-SUFFIX,meetfasttrack.com
|
||||
- DOMAIN-SUFFIX,meetyourdevices.com
|
||||
- DOMAIN-SUFFIX,mepn.com
|
||||
- DOMAIN-SUFFIX,microsoft
|
||||
- DOMAIN-SUFFIX,microsoft-int.com
|
||||
- DOMAIN-SUFFIX,microsoft-ppe.com
|
||||
- DOMAIN-SUFFIX,microsoft-sap-events.com
|
||||
- DOMAIN-SUFFIX,microsoft-sbs-domains.com
|
||||
- DOMAIN-SUFFIX,microsoft-smb.cn
|
||||
- DOMAIN-SUFFIX,microsoft.az
|
||||
- DOMAIN-SUFFIX,microsoft.be
|
||||
- DOMAIN-SUFFIX,microsoft.by
|
||||
- DOMAIN-SUFFIX,microsoft.ca
|
||||
- DOMAIN-SUFFIX,microsoft.cat
|
||||
- DOMAIN-SUFFIX,microsoft.ch
|
||||
- DOMAIN-SUFFIX,microsoft.cl
|
||||
- DOMAIN-SUFFIX,microsoft.com
|
||||
- DOMAIN-SUFFIX,microsoft.com.akadns.net
|
||||
- DOMAIN-SUFFIX,microsoft.com.nsatc.net
|
||||
- DOMAIN-SUFFIX,microsoft.cz
|
||||
- DOMAIN-SUFFIX,microsoft.de
|
||||
- DOMAIN-SUFFIX,microsoft.dk
|
||||
- DOMAIN-SUFFIX,microsoft.ee
|
||||
- DOMAIN-SUFFIX,microsoft.es
|
||||
- DOMAIN-SUFFIX,microsoft.eu
|
||||
- DOMAIN-SUFFIX,microsoft.fi
|
||||
- DOMAIN-SUFFIX,microsoft.ge
|
||||
- DOMAIN-SUFFIX,microsoft.hu
|
||||
- DOMAIN-SUFFIX,microsoft.io
|
||||
- DOMAIN-SUFFIX,microsoft.is
|
||||
- DOMAIN-SUFFIX,microsoft.it
|
||||
- DOMAIN-SUFFIX,microsoft.jp
|
||||
- DOMAIN-SUFFIX,microsoft.lt
|
||||
- DOMAIN-SUFFIX,microsoft.lu
|
||||
- DOMAIN-SUFFIX,microsoft.lv
|
||||
- DOMAIN-SUFFIX,microsoft.md
|
||||
- DOMAIN-SUFFIX,microsoft.net
|
||||
- DOMAIN-SUFFIX,microsoft.pl
|
||||
- DOMAIN-SUFFIX,microsoft.pt
|
||||
- DOMAIN-SUFFIX,microsoft.red
|
||||
- DOMAIN-SUFFIX,microsoft.ro
|
||||
- DOMAIN-SUFFIX,microsoft.rs
|
||||
- DOMAIN-SUFFIX,microsoft.ru
|
||||
- DOMAIN-SUFFIX,microsoft.se
|
||||
- DOMAIN-SUFFIX,microsoft.si
|
||||
- DOMAIN-SUFFIX,microsoft.tv
|
||||
- DOMAIN-SUFFIX,microsoft.ua
|
||||
- DOMAIN-SUFFIX,microsoft.uz
|
||||
- DOMAIN-SUFFIX,microsoft.vn
|
||||
- DOMAIN-SUFFIX,microsoft365.com
|
||||
- DOMAIN-SUFFIX,microsoftaccountguard.com
|
||||
- DOMAIN-SUFFIX,microsoftads.com
|
||||
- DOMAIN-SUFFIX,microsoftadvertising.com
|
||||
- DOMAIN-SUFFIX,microsoftadvertisingregionalawards.com
|
||||
- DOMAIN-SUFFIX,microsoftaffiliates.com
|
||||
- DOMAIN-SUFFIX,microsoftapps.azurewebsites.net
|
||||
- DOMAIN-SUFFIX,microsoftazuread-sso.com
|
||||
- DOMAIN-SUFFIX,microsoftcloud.com
|
||||
- DOMAIN-SUFFIX,microsoftcloudworkshop.com
|
||||
- DOMAIN-SUFFIX,microsoftcommunitytraining.com
|
||||
- DOMAIN-SUFFIX,microsoftemail.com
|
||||
- DOMAIN-SUFFIX,microsoftestore.com.hk
|
||||
- DOMAIN-SUFFIX,microsofthouse.com
|
||||
- DOMAIN-SUFFIX,microsofthouse.net
|
||||
- DOMAIN-SUFFIX,microsoftinternetsafety.net
|
||||
- DOMAIN-SUFFIX,microsoftlatamaitour.com
|
||||
- DOMAIN-SUFFIX,microsoftlinc.com
|
||||
- DOMAIN-SUFFIX,microsoftonline-p.com
|
||||
- DOMAIN-SUFFIX,microsoftonline-p.net
|
||||
- DOMAIN-SUFFIX,microsoftonline.com
|
||||
- DOMAIN-SUFFIX,microsoftpartnercommunity.com
|
||||
- DOMAIN-SUFFIX,microsoftready.com
|
||||
- DOMAIN-SUFFIX,microsoftsiteselection.com
|
||||
- DOMAIN-SUFFIX,microsoftstore.com
|
||||
- DOMAIN-SUFFIX,microsoftstore.com.cn
|
||||
- DOMAIN-SUFFIX,microsoftstore.com.hk
|
||||
- DOMAIN-SUFFIX,microsoftstream.com
|
||||
- DOMAIN-SUFFIX,microsoftteams.com
|
||||
- DOMAIN-SUFFIX,microsofttradein.com
|
||||
- DOMAIN-SUFFIX,microsofttranslator.com
|
||||
- DOMAIN-SUFFIX,microsoftuwp.com
|
||||
- DOMAIN-SUFFIX,momentumms.com
|
||||
- DOMAIN-SUFFIX,morphcharts.com
|
||||
- DOMAIN-SUFFIX,mpnevolution.com
|
||||
- DOMAIN-SUFFIX,ms-studiosmedia.com
|
||||
- DOMAIN-SUFFIX,ms365surfaceoffer.com
|
||||
- DOMAIN-SUFFIX,msa.akadns6.net
|
||||
- DOMAIN-SUFFIX,msads.net
|
||||
- DOMAIN-SUFFIX,msappproxy.net
|
||||
- DOMAIN-SUFFIX,msauth.cn
|
||||
- DOMAIN-SUFFIX,msauth.net
|
||||
- DOMAIN-SUFFIX,msauthimages.net
|
||||
- DOMAIN-SUFFIX,mschallenge2018.com
|
||||
- DOMAIN-SUFFIX,msecnd.net
|
||||
- DOMAIN-SUFFIX,msft.info
|
||||
- DOMAIN-SUFFIX,msft.net
|
||||
- DOMAIN-SUFFIX,msftauth.cn
|
||||
- DOMAIN-SUFFIX,msftauth.net
|
||||
- DOMAIN-SUFFIX,msftauthimages.net
|
||||
- DOMAIN-SUFFIX,msftcenterone.cn
|
||||
- DOMAIN-SUFFIX,msftconnecttest.com
|
||||
- DOMAIN-SUFFIX,msfteducation.ca
|
||||
- DOMAIN-SUFFIX,msftidentity.com
|
||||
- DOMAIN-SUFFIX,msftnet.org
|
||||
- DOMAIN-SUFFIX,msgamesresearch.com
|
||||
- DOMAIN-SUFFIX,msidentity.com
|
||||
- DOMAIN-SUFFIX,msignitechina.com
|
||||
- DOMAIN-SUFFIX,msocdn.com
|
||||
- DOMAIN-SUFFIX,msocsp.com
|
||||
- DOMAIN-SUFFIX,msopentech.cn
|
||||
- DOMAIN-SUFFIX,mspil.cn
|
||||
- DOMAIN-SUFFIX,msra.cn
|
||||
- DOMAIN-SUFFIX,mstea.ms
|
||||
- DOMAIN-SUFFIX,msturing.org
|
||||
- DOMAIN-SUFFIX,msudalosti.com
|
||||
- DOMAIN-SUFFIX,msvevent.com
|
||||
- DOMAIN-SUFFIX,mymicrosoft.com
|
||||
- DOMAIN-SUFFIX,nextechafrica.net
|
||||
- DOMAIN-SUFFIX,nxta.org
|
||||
- DOMAIN-SUFFIX,oaspapps.com
|
||||
- DOMAIN-SUFFIX,oaspapps.com.akadns.net
|
||||
- DOMAIN-SUFFIX,onecollector.cloudapp.aria
|
||||
- DOMAIN-SUFFIX,onecollector.cloudapp.aria.akadns.net
|
||||
- DOMAIN-SUFFIX,onenote.com
|
||||
- DOMAIN-SUFFIX,onenote.net
|
||||
- DOMAIN-SUFFIX,onestore.ms
|
||||
- DOMAIN-SUFFIX,onmicrosoft.com
|
||||
- DOMAIN-SUFFIX,opticsforthecloud.net
|
||||
- DOMAIN-SUFFIX,optimizely.com
|
||||
- DOMAIN-SUFFIX,outingsapp.com
|
||||
- DOMAIN-SUFFIX,outlook.cn
|
||||
- DOMAIN-SUFFIX,outlook.com
|
||||
- DOMAIN-SUFFIX,outlookgroups.ms
|
||||
- DOMAIN-SUFFIX,outlookmobile.com
|
||||
- DOMAIN-SUFFIX,passport.net
|
||||
- DOMAIN-SUFFIX,phonefactor.net
|
||||
- DOMAIN-SUFFIX,pixapp.net
|
||||
- DOMAIN-SUFFIX,playfabapi.cn
|
||||
- DOMAIN-SUFFIX,playfabcn.com
|
||||
- DOMAIN-SUFFIX,powerappscdn.net
|
||||
- DOMAIN-SUFFIX,powerautomate.com
|
||||
- DOMAIN-SUFFIX,powerbi.com
|
||||
- DOMAIN-SUFFIX,powershellgallery.com
|
||||
- DOMAIN-SUFFIX,projectmurphy.net
|
||||
- DOMAIN-SUFFIX,projectsangam.com
|
||||
- DOMAIN-SUFFIX,pxt.io
|
||||
- DOMAIN-SUFFIX,s-microsoft.com
|
||||
- DOMAIN-SUFFIX,s-msft.com
|
||||
- DOMAIN-SUFFIX,s-msn.com
|
||||
- DOMAIN-SUFFIX,sfbassets.com
|
||||
- DOMAIN-SUFFIX,sfbassets.net
|
||||
- DOMAIN-SUFFIX,sfx.ms
|
||||
- DOMAIN-SUFFIX,sharepoint.cn
|
||||
- DOMAIN-SUFFIX,sharepoint.com
|
||||
- DOMAIN-SUFFIX,sharepointonline.com
|
||||
- DOMAIN-SUFFIX,skype
|
||||
- DOMAIN-SUFFIX,staffhub.ms
|
||||
- DOMAIN-SUFFIX,successwithteams.com
|
||||
- DOMAIN-SUFFIX,surface.com
|
||||
- DOMAIN-SUFFIX,svc.ms
|
||||
- DOMAIN-SUFFIX,syncshop.cn
|
||||
- DOMAIN-SUFFIX,sysinternals.com
|
||||
- DOMAIN-SUFFIX,tailwindtraders.com
|
||||
- DOMAIN-SUFFIX,techhub.ms
|
||||
- DOMAIN-SUFFIX,tenor.com
|
||||
- DOMAIN-SUFFIX,tfsallin.net
|
||||
- DOMAIN-SUFFIX,trafficmanager.net
|
||||
- DOMAIN-SUFFIX,translatetheweb.com
|
||||
- DOMAIN-SUFFIX,unlocklimitlesslearning.com
|
||||
- DOMAIN-SUFFIX,userpxt.io
|
||||
- DOMAIN-SUFFIX,uservoice.com
|
||||
- DOMAIN-SUFFIX,videobreakdown.com
|
||||
- DOMAIN-SUFFIX,videoindexer.ai
|
||||
- DOMAIN-SUFFIX,virtualearth.net
|
||||
- DOMAIN-SUFFIX,vsallin.net
|
||||
- DOMAIN-SUFFIX,wbd.ms
|
||||
- DOMAIN-SUFFIX,what-fan.net
|
||||
- DOMAIN-SUFFIX,windows
|
||||
- DOMAIN-SUFFIX,windows-int.net
|
||||
- DOMAIN-SUFFIX,windows-ppe.net
|
||||
- DOMAIN-SUFFIX,windows.com
|
||||
- DOMAIN-SUFFIX,windows.net
|
||||
- DOMAIN-SUFFIX,windows.nl
|
||||
- DOMAIN-SUFFIX,windows8.hk
|
||||
- DOMAIN-SUFFIX,windowscommunity.net
|
||||
- DOMAIN-SUFFIX,windowsmarketplace.com
|
||||
- DOMAIN-SUFFIX,windowsphone-int.com
|
||||
- DOMAIN-SUFFIX,windowsphone.com
|
||||
- DOMAIN-SUFFIX,windowssearch.com
|
||||
- DOMAIN-SUFFIX,windowsupdate.com
|
||||
- DOMAIN-SUFFIX,winhec.com
|
||||
- DOMAIN-SUFFIX,winhec.net
|
||||
- DOMAIN-SUFFIX,yammer.com
|
||||
- DOMAIN-SUFFIX,yammerusercontent.com
|
||||
- DOMAIN-SUFFIX,g.akamaiedge.net
|
||||
- DOMAIN-SUFFIX,a1158.g.akamai.net
|
||||
- DOMAIN-SUFFIX,a122.dscg3.akamai.net
|
||||
- DOMAIN-SUFFIX,a767.dscg3.akamai.net
|
||||
- DOMAIN-SUFFIX,cs11.wpc.v0cdn.net
|
||||
- DOMAIN-SUFFIX,cs9.wac.phicdn.net
|
||||
- DOMAIN-SUFFIX,b.akamaiedge.net
|
||||
- DOMAIN-SUFFIX,spoprod-a.akamaihd.net
|
||||
- DOMAIN-SUFFIX,windows.com.akadns.net
|
||||
- DOMAIN-SUFFIX,prod-video-cms-rt-microsoft-com.akamaized.net
|
||||
- DOMAIN-SUFFIX,statics-marketingsites-eas-ms-com.akamaized.net
|
||||
- DOMAIN-SUFFIX,statics-marketingsites-neu-ms-com.akamaized.net
|
||||
- DOMAIN-SUFFIX,vip5.afdorigin-prod-am02.afdogw.com
|
||||
- DOMAIN-SUFFIX,img-prod-cms-rt-microsoft-com.akamaized.net
|
||||
- DOMAIN-SUFFIX,img-s-msn-com.akamaized.net
|
||||
- DOMAIN-SUFFIX,mwf-service.akamaized.net
|
||||
- DOMAIN-SUFFIX,officecdn-microsoft-com.akamaized.net
|
||||
- DOMAIN-SUFFIX,statics-marketingsites-eus-ms-com.akamaized.net
|
||||
- DOMAIN-SUFFIX,statics-marketingsites-wcus-ms-com.akamaized.net
|
@ -0,0 +1,26 @@
|
||||
payload:
|
||||
# > Netease Music
|
||||
- DOMAIN-SUFFIX,163yun.com
|
||||
- DOMAIN-SUFFIX,api.iplay.163.com
|
||||
- DOMAIN-SUFFIX,hz.netease.com
|
||||
- DOMAIN-SUFFIX,mam.netease.com
|
||||
- DOMAIN-SUFFIX,music.163.com
|
||||
- IP-CIDR,101.71.154.241/32,no-resolve
|
||||
- IP-CIDR,103.126.92.132/32,no-resolve
|
||||
- IP-CIDR,103.126.92.133/32,no-resolve
|
||||
- IP-CIDR,112.13.119.17/32,no-resolve
|
||||
- IP-CIDR,112.13.122.1/32,no-resolve
|
||||
- IP-CIDR,115.236.118.33/32,no-resolve
|
||||
- IP-CIDR,115.236.121.1/32,no-resolve
|
||||
- IP-CIDR,118.24.63.156/32,no-resolve
|
||||
- IP-CIDR,193.112.159.225/32,no-resolve
|
||||
- IP-CIDR,223.252.199.66/32,no-resolve
|
||||
- IP-CIDR,223.252.199.67/32,no-resolve
|
||||
- IP-CIDR,39.105.63.80/32,no-resolve
|
||||
- IP-CIDR,45.254.48.1/32,no-resolve
|
||||
- IP-CIDR,47.100.127.239/32,no-resolve
|
||||
- IP-CIDR,59.111.160.195/32,no-resolve
|
||||
- IP-CIDR,59.111.160.197/32,no-resolve
|
||||
- IP-CIDR,59.111.181.35/32,no-resolve
|
||||
- IP-CIDR,59.111.181.38/32,no-resolve
|
||||
- IP-CIDR,59.111.181.60/32,no-resolve
|
49
luci-app-openclash/root/etc/openclash/rule_provider/Netflix
Normal file
49
luci-app-openclash/root/etc/openclash/rule_provider/Netflix
Normal file
@ -0,0 +1,49 @@
|
||||
payload:
|
||||
# > Netflix
|
||||
- DOMAIN-SUFFIX,flxvpn.net
|
||||
- DOMAIN-SUFFIX,netflix.ca
|
||||
- DOMAIN-SUFFIX,netflix.com
|
||||
- DOMAIN-SUFFIX,netflix.com.au
|
||||
- DOMAIN-SUFFIX,netflixdnstest10.com
|
||||
- DOMAIN-SUFFIX,netflixdnstest1.com
|
||||
- DOMAIN-SUFFIX,netflixdnstest2.com
|
||||
- DOMAIN-SUFFIX,netflixdnstest3.com
|
||||
- DOMAIN-SUFFIX,netflixdnstest4.com
|
||||
- DOMAIN-SUFFIX,netflixdnstest5.com
|
||||
- DOMAIN-SUFFIX,netflixdnstest6.com
|
||||
- DOMAIN-SUFFIX,netflixdnstest7.com
|
||||
- DOMAIN-SUFFIX,netflixdnstest8.com
|
||||
- DOMAIN-SUFFIX,netflixdnstest9.com
|
||||
- DOMAIN-SUFFIX,netflixinvestor.com
|
||||
- DOMAIN-SUFFIX,netflix.net
|
||||
- DOMAIN-SUFFIX,netflixstudios.com
|
||||
- DOMAIN-SUFFIX,netflixtechblog.com
|
||||
- DOMAIN-SUFFIX,nflxext.com
|
||||
- DOMAIN-SUFFIX,nflximg.com
|
||||
- DOMAIN-SUFFIX,nflximg.net
|
||||
- DOMAIN-SUFFIX,nflxso.net
|
||||
- DOMAIN-SUFFIX,nflxvideo.net
|
||||
|
||||
- DOMAIN-SUFFIX,e13252.dscg.akamaiedge.net
|
||||
- DOMAIN-SUFFIX,h-netflix.online-metrix.net
|
||||
- DOMAIN-SUFFIX,onetrust.com
|
||||
- DOMAIN-SUFFIX,cookielaw.org
|
||||
|
||||
- IP-CIDR,23.246.0.0/18,no-resolve
|
||||
- IP-CIDR,37.77.184.0/21,no-resolve
|
||||
- IP-CIDR,38.72.126.0/24,no-resolve
|
||||
- IP-CIDR,45.57.0.0/17,no-resolve
|
||||
- IP-CIDR,64.120.128.0/17,no-resolve
|
||||
- IP-CIDR,66.197.128.0/17,no-resolve
|
||||
- IP-CIDR,69.53.224.0/19,no-resolve
|
||||
- IP-CIDR,103.87.204.0/22,no-resolve
|
||||
- IP-CIDR,108.175.32.0/20,no-resolve
|
||||
- IP-CIDR,185.2.220.0/22,no-resolve
|
||||
- IP-CIDR,185.9.188.0/22,no-resolve
|
||||
- IP-CIDR,192.173.64.0/18,no-resolve
|
||||
- IP-CIDR,198.38.96.0/19,no-resolve
|
||||
- IP-CIDR,198.45.48.0/20,no-resolve
|
||||
- IP-CIDR,208.75.76.0/22,no-resolve
|
||||
- IP-CIDR,34.210.42.111/32,no-resolve
|
||||
- IP-CIDR,52.89.124.203/32,no-resolve
|
||||
- IP-CIDR,54.148.37.5/32,no-resolve
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user