提交合并

Signed-off-by: 萌森 <qyg2297248353@163.com>
This commit is contained in:
2024-07-17 16:30:13 +08:00
committed by qyg2297248353
commit 6c18fe434d
449 changed files with 21391 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
# CookieCloud
CookieCloud 是一个用于将 cookie 与您的自托管服务器同步的小工具,允许您将浏览器 cookie
和本地存储同步到您的手机和云端。它具有内置的端到端加密功能,并允许您设置同步间隔。
![CookieCloud](https://github.com/easychen/CookieCloud/blob/master/images/20230121092535.png)
## 浏览器插件
+ [Edge Store](https://microsoftedge.microsoft.com/addons/detail/cookiecloud/bffenpfpjikaeocaihdonmgnjjdpjkeo)
+ [Chrome Store](https://chrome.google.com/webstore/detail/cookiecloud/ffjiejobkoibkjlhjnlgmcnnigeelbdl)
## FAQ 常问问题
+ 目前,同步只是单向的,这意味着一个浏览器可以上传,而另一个浏览器可以下载。
+ 该浏览器扩展正式支持 Chrome 和 Edge。其他基于 Chromium 的浏览器可能可以工作,但尚未经过测试。使用源代码 cd extension &&
pnpm build --target=firefox-mv2 自行编译Firefox版本。
+ 请注意,Firefox 的 cookie 格式与 Chrome 的不同,并且它们不能混合。
+19
View File
@@ -0,0 +1,19 @@
name: CookieCloud
title: Cookie 同步
description: 自架服务器同步Cookie的小工具
additionalProperties:
key: cookie-cloud
name: CookieCloud
tags:
- WebSite
- Tool
- Runtime
- Local
shortDescZh: 自架服务器同步Cookie的小工具
shortDescEn: A small tool to synchronize cookies on self-built servers
type: website
crossVersionUpdate: true
limit: 0
website: https://github.com/easychen/CookieCloud/
github: https://github.com/easychen/CookieCloud/
document: https://github.com/easychen/CookieCloud/
+24
View File
@@ -0,0 +1,24 @@
additionalProperties:
formFields:
- default: 8088
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: Port
labelZh: 端口
required: true
rule: paramPort
type: number
- default: "/home/cookie-cloud"
edit: true
envKey: COOKIECLOUD_ROOT_PATH
labelZh: 数据持久化路径
labelEn: Data persistence path
required: true
type: text
- default: "/"
edit: true
envKey: API_ROOT
labelZh: 网站路径
labelEn: Web path
required: true
type: text
@@ -0,0 +1,21 @@
version: "3.8"
networks:
1panel-network:
external: true
services:
cookie-cloud:
image: easychen/cookiecloud:latest
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:8088
volumes:
- ${COOKIECLOUD_ROOT_PATH}/data:/data/api/data
env_file:
- .env
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
if [ -f .env ]; then
source .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi
@@ -0,0 +1,10 @@
#!/bin/bash
if [ -f .env ]; then
source .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi
@@ -0,0 +1,10 @@
#!/bin/bash
if [ -f .env ]; then
source .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi
Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB