0

ieee や acm の URL の後に自分の大学の URL を追加して研究論文の pdf にアクセスできるようにしたい

これを行う方法?

例えば

次のようにリンクを変更します-

ieee.org/paper21

ieee.org.university.edu/paper21

.university.eduこれを自動化するには、Chrome でどのようなブックマークを作成する必要がありますか?.org

4

1 に答える 1

1
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');})()
于 2013-01-18T23:05:24.607 に答える