-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHabrCacheEnhanced.user.js
22 lines (21 loc) · 1.31 KB
/
HabrCacheEnhanced.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// ==UserScript==
// @name HabrCacheEnhanced
// @description Перенаправляет удалённые или скрытые в черновики записи с habr.com на зеркала Хабра. Redirects deleted or hidden posts from habr.com to Habr mirrors.
// @namespace habrcache
// @version 20250125.3
// @author dartraiden
// @match https://habr.com/*
// @updateURL https://github.com/dartraiden/HabrCacheEnhanced/raw/master/HabrCacheEnhanced.meta.js
// @downloadURL https://github.com/dartraiden/HabrCacheEnhanced/raw/master/HabrCacheEnhanced.user.js
// @supportURL https://github.com/dartraiden/HabrCacheEnhanced/issues
// ==/UserScript==
setTimeout(function() {
var error_code = document.querySelector(".tm-error-message__code");
if(error_code && error_code.innerText == "403") {
var id = document.location.href.replace(/^.*\/(\d+)\/?.+/, '$1');
var body = document.querySelector(".tm-error-message__body");
if(body){
body.outerHTML += '<p>• <a href="https://itnan.ru/post.php?c=1&p=' + id + '">ITnan</a></p><p>• <a href="https://sohabr.net/habr/post/' + id + '/">СоХабр</a></p><p>• <a href="https://savepearlharbor.com/?p=' + id + '">SavePearlHarbor</a></p>';
}
}
}, 500);