DuckDuckGo AI Chat Auto-Access

自动设置 cookie,跳过 DuckDuckGo AI 聊天的初始确认步骤,隐藏欢迎提示,避免在无痕模式下每次访问时手动确认。

  1. // ==UserScript==
  2. // @name DuckDuckGo AI Chat Auto-Access
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.1
  5. // @description 自动设置 cookie,跳过 DuckDuckGo AI 聊天的初始确认步骤,隐藏欢迎提示,避免在无痕模式下每次访问时手动确认。
  6. // @author Your Name
  7. // @match https://duckduckgo.com/aichat
  8. // @match https://duckduckgo.com/?q=DuckDuckGo+AI+Chat&ia=chat&duckai=1
  9. // @match https://duck.ai
  10. // @grant none
  11. // @run-at document-start
  12. // @license MIT
  13. // ==/UserScript==
  14.  
  15. /*
  16. 使用说明:
  17. 1. 安装 Tampermonkey。
  18. 2. 创建新脚本并粘贴代码。
  19. 3. 修改 `cookieValue` 选择聊天模型:
  20. - '3': GPT-4o mini 3
  21. - '1': Claude 3 Haiku 1
  22. - '5': Llama 3.1 70B 5
  23. - '6': Mixtral 8x7B 6
  24. 4. 保存并启用脚本。
  25. 5. 访问 DuckDuckGo AI 聊天页面,直接进入聊天界面,无需手动确认。
  26. */
  27.  
  28. (function() {
  29. 'use strict';
  30.  
  31. localStorage.setItem('aichatWelcomeCardsDimissed', JSON.stringify(new Date().toISOString().split('T')[0]));
  32.  
  33. const cookieName = 'dcm';
  34. const cookieValue = '3'; // 聊天模型
  35. const cookieDomain = 'duckduckgo.com';
  36. const cookiePath = '/';
  37. const cookieExpires = new Date('2099-01-12T00:00:00Z').toUTCString();
  38.  
  39. document.cookie = `${cookieName}=${cookieValue}; Domain=${cookieDomain}; Path=${cookiePath}; Expires=${cookieExpires}; Secure; SameSite=Strict`;
  40. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址