DirectLink🐘!

在长毛象站点中直达ActivityHub链接

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         DirectLink🐘!
// @namespace    editit
// @version      0.4.1
// @description  在长毛象站点中直达ActivityHub链接
// @author       editit
// @match        *://o3o.ca/*
// @match        *://m.cmx.im/*
// @license      MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    // https://stackoverflow.com/a/47409362
    const inputTypes = [window.HTMLInputElement, window.HTMLSelectElement, window.HTMLTextAreaElement]
    const triggerInputChange = (node, value = "") => {
        // only process the change on elements we know have a value setter in their constructor
        if (inputTypes.indexOf(node.__proto__.constructor) > -1) {
            const setValue = Object.getOwnPropertyDescriptor(node.__proto__, "value").set
            const event = new Event("input", { bubbles: true })

            setValue.call(node, value)
            node.dispatchEvent(event)
        }
    }
    const kp1 = new KeyboardEvent("keydown", {
        bubbles: true,
        cancelable: true,
        keyCode: 13,
    })
    const kp2 = new KeyboardEvent("keyup", {
        bubbles: true,
        cancelable: true,
        keyCode: 13,
    })
    // https://stackoverflow.com/a/34896387
    document.addEventListener("click", function (e) {
        const target = e.target.closest("a.status-link.unhandled-link") // Or any other selector.

        if (target) {
            let h = target.href
            if (h.match(/^.*?\/\/[^\/]+\/((@[^\/]+)|(notes))\//) || h.match(/^.*?:\/\/bird\.makeup\/user\.*/) || h.match(/^.*?\/\/[^\/]+\/users\/[^\/]+\/statuses\/\d+/)) {
                e.preventDefault()
                console.log(h)
                triggerInputChange(document.querySelector("input.search__input"), h)
                document.querySelector("input.search__input").dispatchEvent(kp1)
                document.querySelector("input.search__input").dispatchEvent(kp2)
                return false
            } else {
            }
        }
    })
})();