このコミットが含まれているのは:
ManeraKai 2023-02-06 18:05:15 +03:00
コミット 5f45e0b09c
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: 5ABC31FFD562E337
2個のファイルの変更12行の追加10行の削除

ファイルの表示

@ -59,16 +59,16 @@ function redirect(url, type, initiator, forceRedirection) {
continue
}
if (
initiator
&&
options[frontend].includes(initiator.origin)
) return "BYPASSTAB"
let instanceList = options[frontend]
if (instanceList === undefined) break
if (instanceList.length === 0) return
if (
initiator
&&
instanceList.includes(initiator.origin)
) return "BYPASSTAB"
randomInstance = utils.getRandomInstance(instanceList)
break
@ -414,13 +414,15 @@ function redirect(url, type, initiator, forceRedirection) {
if (url.pathname.endsWith('-lyrics')) return `${randomInstance}${url.pathname}`
}
case "ruralDictionary": {
if (!url.pathname.endsWith('/define.php') && !url.pathname.endsWith('/random.php') && url.pathname != '/') return
if (!url.pathname.includes('/define.php') && !url.pathname.includes('/random.php') && url.pathname != '/') return
return `${randomInstance}${url.pathname}${url.search}`
}
case "anonymousOverflow": {
if (!url.pathname.startsWith('/questions') && url.pathname != '/') return
const threadID = /\/\d+(?=[?&#/]|$)/.exec(url.pathname)?.[0]
return `${randomInstance}${threadID ? '/questions' + threadID : url.pathname}${url.search}`
const threadID = /\/(\d+)\/?$/.exec(url.pathname)
if (threadID) return `${randomInstance}/questions/${threadID[1]}${url.search}`
return `${randomInstance}${url.pathname}${url.search}`
}
case "biblioReads": {
if (!url.pathname.startsWith('/book/show/') && url.pathname != '/') return

ファイルの表示

@ -1,7 +1,7 @@
{
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "2.5.1",
"version": "2.5.2",
"manifest_version": 2,
"browser_specific_settings": {
"gecko": {