Google AI Studio - Auto Settings (Ultimate)

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

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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
};