Google Search Anti-AI Content Filter

Automatically appends Anti-AI tags to Google search queries.

目前為 2025-01-28 提交的版本,檢視 最新版本

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

You will need to install an extension such as Tampermonkey to install this script.

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

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

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

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

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name            Google Search Anti-AI Content Filter
// @name:es         Filtro Anti contenido generado por IA en Google
// @namespace       xxxxxxxxxxxxxx
// @version         1.51
// @description     Automatically appends Anti-AI tags to Google search queries.
// @description:es  Añade automaticamente las etiquetas para evitar contenido generado por IA en Google.
// @author          fLTC
// @match           https://www.google.*/search*
// @include         http*://images.google.*/images*
// @include         http*://www.google.*/images*
// @icon            https://no-ai-icon.com/wp-content/uploads/2023/02/no-ai-icon-01.svg
// @grant           none
// @license         MIT
// ==/UserScript==
 
 (function () {
    "use strict";

    const url = new URL(window.location.href);  // Get the current URL
    const queryParams = url.searchParams;       // Get the search query parameters
    let query = queryParams.get('q');           // Get the current search query (q parameter)
    const termsToExclude = [
        "AI*",
        "stable diffusion",
        "ai",
        "midjourney",
        "generative art",
        "text-to-image",
        "prompt",
        "ai-generated"
    ];

    // Check if terms have already been added to avoid duplicates
    if (query && typeof query === 'string') {
        let appendTerms = "";

        // Exclude terms using advanced operators
        termsToExclude.forEach(term => {
            if (!query.includes(`-${term}`)) {
                appendTerms += ` -${term}`;
            }
        });

        // If there are terms to add, update the query and parameters
        if (appendTerms) {
            query += appendTerms;
            queryParams.set('q', query);

            // Redirect with the updated parameters
            window.location.replace(url.toString());
        }
    }
})();