├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml └── workflows │ ├── build-packages.yml │ ├── delete-workflow-runs.yml │ ├── dependabot.yml │ ├── release-packages.yml │ └── stale-issues.yml ├── LICENSE ├── README.md ├── README.zh.md ├── feed.sh ├── install.sh ├── luci-app-nikki ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ ├── tools │ │ └── nikki.js │ │ └── view │ │ └── nikki │ │ ├── app.js │ │ ├── editor.js │ │ ├── log.js │ │ ├── mixin.js │ │ ├── profile.js │ │ └── proxy.js ├── po │ ├── templates │ │ └── nikki.pot │ ├── zh_Hans │ │ └── nikki.po │ └── zh_Hant │ │ └── nikki.po └── root │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-nikki.json │ └── rpcd │ ├── acl.d │ └── luci-app-nikki.json │ └── ucode │ └── luci.nikki ├── nikki ├── Makefile └── files │ ├── mixin.yaml │ ├── nftables │ ├── geoip6_cn.nft │ └── geoip_cn.nft │ ├── nikki.conf │ ├── nikki.init │ ├── nikki.upgrade │ ├── scripts │ ├── debug.sh │ ├── firewall_include.sh │ └── include.sh │ ├── uci-defaults │ ├── firewall.sh │ ├── init.sh │ └── migrate.sh │ └── ucode │ ├── hijack.ut │ ├── include.uc │ └── mixin.uc └── uninstall.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/build-packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/.github/workflows/build-packages.yml -------------------------------------------------------------------------------- /.github/workflows/delete-workflow-runs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/.github/workflows/delete-workflow-runs.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/.github/workflows/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/release-packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/.github/workflows/release-packages.yml -------------------------------------------------------------------------------- /.github/workflows/stale-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/.github/workflows/stale-issues.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/README.md -------------------------------------------------------------------------------- /README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/README.zh.md -------------------------------------------------------------------------------- /feed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/feed.sh -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/install.sh -------------------------------------------------------------------------------- /luci-app-nikki/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/luci-app-nikki/Makefile -------------------------------------------------------------------------------- /luci-app-nikki/htdocs/luci-static/resources/tools/nikki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/luci-app-nikki/htdocs/luci-static/resources/tools/nikki.js -------------------------------------------------------------------------------- /luci-app-nikki/htdocs/luci-static/resources/view/nikki/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/luci-app-nikki/htdocs/luci-static/resources/view/nikki/app.js -------------------------------------------------------------------------------- /luci-app-nikki/htdocs/luci-static/resources/view/nikki/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/luci-app-nikki/htdocs/luci-static/resources/view/nikki/editor.js -------------------------------------------------------------------------------- /luci-app-nikki/htdocs/luci-static/resources/view/nikki/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/luci-app-nikki/htdocs/luci-static/resources/view/nikki/log.js -------------------------------------------------------------------------------- /luci-app-nikki/htdocs/luci-static/resources/view/nikki/mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/luci-app-nikki/htdocs/luci-static/resources/view/nikki/mixin.js -------------------------------------------------------------------------------- /luci-app-nikki/htdocs/luci-static/resources/view/nikki/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/luci-app-nikki/htdocs/luci-static/resources/view/nikki/profile.js -------------------------------------------------------------------------------- /luci-app-nikki/htdocs/luci-static/resources/view/nikki/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/luci-app-nikki/htdocs/luci-static/resources/view/nikki/proxy.js -------------------------------------------------------------------------------- /luci-app-nikki/po/templates/nikki.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/luci-app-nikki/po/templates/nikki.pot -------------------------------------------------------------------------------- /luci-app-nikki/po/zh_Hans/nikki.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/luci-app-nikki/po/zh_Hans/nikki.po -------------------------------------------------------------------------------- /luci-app-nikki/po/zh_Hant/nikki.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/luci-app-nikki/po/zh_Hant/nikki.po -------------------------------------------------------------------------------- /luci-app-nikki/root/usr/share/luci/menu.d/luci-app-nikki.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/luci-app-nikki/root/usr/share/luci/menu.d/luci-app-nikki.json -------------------------------------------------------------------------------- /luci-app-nikki/root/usr/share/rpcd/acl.d/luci-app-nikki.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/luci-app-nikki/root/usr/share/rpcd/acl.d/luci-app-nikki.json -------------------------------------------------------------------------------- /luci-app-nikki/root/usr/share/rpcd/ucode/luci.nikki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/luci-app-nikki/root/usr/share/rpcd/ucode/luci.nikki -------------------------------------------------------------------------------- /nikki/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/nikki/Makefile -------------------------------------------------------------------------------- /nikki/files/mixin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/nikki/files/mixin.yaml -------------------------------------------------------------------------------- /nikki/files/nftables/geoip6_cn.nft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/nikki/files/nftables/geoip6_cn.nft -------------------------------------------------------------------------------- /nikki/files/nftables/geoip_cn.nft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/nikki/files/nftables/geoip_cn.nft -------------------------------------------------------------------------------- /nikki/files/nikki.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/nikki/files/nikki.conf -------------------------------------------------------------------------------- /nikki/files/nikki.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/nikki/files/nikki.init -------------------------------------------------------------------------------- /nikki/files/nikki.upgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/nikki/files/nikki.upgrade -------------------------------------------------------------------------------- /nikki/files/scripts/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/nikki/files/scripts/debug.sh -------------------------------------------------------------------------------- /nikki/files/scripts/firewall_include.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/nikki/files/scripts/firewall_include.sh -------------------------------------------------------------------------------- /nikki/files/scripts/include.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/nikki/files/scripts/include.sh -------------------------------------------------------------------------------- /nikki/files/uci-defaults/firewall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/nikki/files/uci-defaults/firewall.sh -------------------------------------------------------------------------------- /nikki/files/uci-defaults/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/nikki/files/uci-defaults/init.sh -------------------------------------------------------------------------------- /nikki/files/uci-defaults/migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/nikki/files/uci-defaults/migrate.sh -------------------------------------------------------------------------------- /nikki/files/ucode/hijack.ut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/nikki/files/ucode/hijack.ut -------------------------------------------------------------------------------- /nikki/files/ucode/include.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/nikki/files/ucode/include.uc -------------------------------------------------------------------------------- /nikki/files/ucode/mixin.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/nikki/files/ucode/mixin.uc -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkinikki-org/OpenWrt-nikki/HEAD/uninstall.sh --------------------------------------------------------------------------------