Geocaching.com - Trackables: Visit All

Script sets all trackables in users invetory to Visited state when logging finds

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name          Geocaching.com - Trackables: Visit All
// @namespace     JuRoot
// @description	  Script sets all trackables in users invetory to Visited state when logging finds
// @include       http*://www.geocaching.com/play/geocache/*/log*
// @include       http*://geocaching.com/play/geocache/*/log*
// @include       http*://*.geocaching.com/play/geocache/*/log*
// @grant         none
// @version       1.0.12
// ==/UserScript==

(function() {
	window.addEventListener('load', function() {
      window.setTimeout(function(){ 
        var button_visitAll = document.getElementsByClassName('btn-visit');
        if (button_visitAll.length > 0) {
          button_visitAll[0].click();
        }
      }, 3000);
	});
})();