小书签:在标题 URL 之前添加一个 URL

Bookmarklet: add an URL before head URL

这可能非常简单,但我是一个新手。我想在 URL 的开头添加一些内容,例如:

原创URL: https://www.example.com/new-article

我想让 URL 使用小书签看起来像这样

https://testtool.com/testing-tool#url=https://www.example.com/new-article

我试过这样的东西

javascript:(function() {window.location=window.location.toString().replace(/^https:\/\/www\./,'https://testtool.com/testing-tool#url=https';})()

但它不起作用。

你能帮帮我吗?

不确定为什么要替换,而只是使用当前的 URL 并将其作为散列粘贴

window.location = 'http://www.example.com#url=' + window.location.href

window.location = 'http://www.example.com#url=' + encodeURIComponent(window.location.href)