gpt4 book ai didi

google-chrome - 使用 declarativeNetRequest 进行动态重定向

转载 作者:行者123 更新时间:2023-12-05 05:53:37 27 4
gpt4 key购买 nike

我想使用 declarativeNetRequest 将域中的所有 URL 重定向到以发起程序 URL 作为编码参数的 URL,例如

http://www.google.com --> http://www.newsite.com?url=http%3A%2F%2Fwww.google.com
http://www.google.com?param1=true --> http://www.newsite.com?url=http%3A%2F%2Fwww.google.com%3Fparam1%3Dtrue

有点像...

  {
"id": 1,
"priority": 1,
"action": {
"type": "redirect",
"redirect": {
"url": `http://www.newsite.com?url=${encodeURIComponent(url)}`
}
}
}

这可能吗?如果没有,还有其他方法可以实现吗?

最佳答案

[
{
"id": 1,
"priority": 1,
"action": {
"type": "redirect",
"redirect": {
"regexSubstitution": "http://www.newsite.com?url=\\0"
}
},
"condition": {
"regexFilter": "^https://www.google.com(.*)",
"resourceTypes": ["main_frame"]
}
}
]

它不会对其进行 URL 编码,但我发现如果参数位于末尾,这并不是真正的问题。还要注意将它限制在正则表达式中的特定站点,否则你可能会陷入无限循环。

关于google-chrome - 使用 declarativeNetRequest 进行动态重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69846569/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com