Google AI Studio - Auto Settings (Ultimate)

Reliable text-based search + Draggable UI + Mobile support + Auto Focus + Visual Settings Menu.

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

作者
Ivan Plankin
日安装量
0
总安装量
7
评分
0 0 0
版本
10.0
创建于
2025-11-06
更新于
2025-11-19
大小
16.1 KB
许可证
MIT
适用于

🤔 What is this?

This is a lightweight script that automates the tedious task of setting model parameters in Google AI Studio. If you're tired of manually adjusting Temperature, Top-P, and other settings every time you open a prompt, this script is for you.

It applies your preferred settings automatically on page load, ensuring a consistent and efficient workflow.


✨ Key Features

  • Fully Automatic: Sets your favorite Temperature, Top-P, and Media Resolution the moment the page is ready.
  • Easy to Configure: All settings are in a simple CONFIG block at the top of the script. No coding knowledge needed to change them!
  • Minimalist UI: A clean, modern status icon appears in the bottom-left corner to show the script's status (⏳ Loading, ✓ Success, ✗ Error) without getting in your way.
  • Smart Focus Restore: After applying settings, the script automatically returns the cursor to the prompt input box so you can start typing immediately.
  • Reliable: It's built to be robust, with multiple retry attempts to handle slow-loading pages.

🚀 How to Install

  1. Make sure you have a userscript manager like Tampermonkey installed.
  2. Click the big green "Install this script" button at the top of this page.
  3. Tampermonkey will open a new tab. Click "Install" again in that tab.

🔧 How to Configure

You can easily change the default settings to match your preferences.

  1. Open the Tampermonkey Dashboard from your browser's extensions menu.
  2. Click on the script name, Google AI Studio - Auto Settings, to open the editor.
  3. Find the CONFIGURATION section near the top of the file.
  4. Edit the values as you see fit.

Here is the part of the code you'll need to edit:

// ==================== CONFIGURATION ====================
const CONFIG = {
    settings: {
        temperature: 0.7,   // Your desired Temperature
        topP: 0.00,         // Your desired Top-P
        mediaResolution: 'Low' // 'Low' or 'High'
    },
    // ... other settings
};