Compare commits

...
5 Commits
Author SHA1 Message Date
go0p 103a40fdf5 update v0.0.6 2025-03-14 14:21:22 +08:00
go0p 4a99b773be disable xml document 2025-03-10 15:17:43 +08:00
go0p 7fe4731b91 update 0.0.5 2025-03-07 17:23:14 +08:00
go0p 08af08c9a8 del 127 2025-03-07 17:21:32 +08:00
go0p e4b2b90507 Refactor proxy panel UI with enhanced interactivity and drag functionality 2025-03-07 17:05:53 +08:00
3 changed files with 823 additions and 591 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "Yakit Chrome Endpoint",
"version": "0.0.3",
"version": "0.0.6",
"description": "A Endpoint for Yakit MITM or more",
"options_ui": {
"page": "proxy/options.html",
@@ -24,7 +24,7 @@
},
"content_scripts": [
{
"matches": ["http://mitm/"],
"matches": ["<all_urls>","http://mitm/"],
"run_at": "document_start",
"js": ["proxy/content.js"]
}
+820 -588
View File
File diff suppressed because it is too large Load Diff
@@ -107,7 +107,7 @@ export const ProxySettings: React.FC<ProxySettingsProps> = ({
// 处理固定代理服务器模式
const bypassList = values.bypassList
? values.bypassList.split('\n').map(line => line.trim()).filter(line => line.length > 0)
: ["localhost", "127.0.0.1"];
: [""];
updatedConfig = {
id: editingConfig.id,