ieee や acm の URL の後に自分の大学の URL を追加して研究論文の pdf にアクセスできるようにしたい
これを行う方法?
例えば
次のようにリンクを変更します-
ieee.org/paper21
に
ieee.org.university.edu/paper21
.university.edu
これを自動化するには、Chrome でどのようなブックマークを作成する必要がありますか?.org
ieee や acm の URL の後に自分の大学の URL を追加して研究論文の pdf にアクセスできるようにしたい
これを行う方法?
例えば
次のようにリンクを変更します-
ieee.org/paper21
に
ieee.org.university.edu/paper21
.university.edu
これを自動化するには、Chrome でどのようなブックマークを作成する必要がありますか?.org
document.location = document.location.href.replace(
document.location.host,
document.location.host + '.university.edu'
)
ブーマークレットとして
(function(){document.location=document.location.href.replace(document.location.host,document.location.host+'.university.edu');})()
またはエンコードされている
(function(){document.location=document.location.href.replace(document.location.host,document.location.host%2B'.university.edu');})()