/*
* @title Text Fragments除去
* @description Google検索等で付加されるScroll To Text Fragment(#:~:text=~)を除去
* @include http://*
* @include https://*
* @license MIT License
* @javascript_url
*/
(()=>{
'use strict';
const
url_object = new URL(location.href);
if (! /^#:~:text=/.test(decodeURIComponent(url_object.hash))) return;
url_object .hash = '';
location.href = url_object.href;
})();