Text Fragments除去
by
furyu-tei
2022-01-26 [2022/01/26 12:06:41]
Google検索等で付加されるScroll To Text Fragment(#:~:text=~)を除去
@@ -9,7 +9,7 @@
(()=>{
const
url_object = new URL(location.href);
-if (! /^#:~:text=/.test(url_object.hash)) return;
+if (! /^#:~:text=/.test(decodeURIComponent(url_object.hash))) return;
url_objct.hash = '';
location.href = url_object.href;
})();
/*
* @title Text Fragments除去
* @description Google検索等で付加されるScroll To Text Fragment(#:~:text=~)を除去
* @include http://*
* @include https://*
* @license MIT License
* @javascript_url
*/
(()=>{
const
url_object = new URL(location.href);
if (! /^#:~:text=/.test(decodeURIComponent(url_object.hash))) return;
url_objct.hash = '';
location.href = url_object.href;
})();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。