Greasy Fork 还支持 简体中文。

Goole搜索hello自动进行位置更新 自行配合Location Gurad插件

My script description

目前為 2023-06-10 提交的版本,檢視 最新版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Goole搜索hello自动进行位置更新 自行配合Location Gurad插件
// @namespace    http://tampermonkey.net/
// @version      0.2
// @license      MIT
// @description  My script description
// @author       You
// @match        https://www.google.com/search?q=hello*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    setInterval(function() {
        // 获取需要点击的元素
        let element = document.querySelector('update-location');

        // 检查元素是否存在
        if (element) {
            // 模拟用户点击
            element.click();
        } else {
            console.log('未找到元素');
        }
    }, 10000); // 10000毫秒,即每10秒执行一次

})();