0

I want to add the url of my university after the url of ieee or acm so that I can access the pdf of the research paper

how to do this?

e.g.

change a link like -

ieee.org/paper21

to

ieee.org.university.edu/paper21

what kind of bookmark should I create in chrome to automate this, instead of typing .university.edu every time after the .org

1 Answers1

1
document.location = document.location.href.replace(
  document.location.host, 
  document.location.host + '.university.edu'
)

as a boomarklet

(function(){document.location=document.location.href.replace(document.location.host,document.location.host+'.university.edu');})()

or encoded that is

(function(){document.location=document.location.href.replace(document.location.host,document.location.host%2B'.university.edu');})()
DG.
  • 3,417
  • 2
  • 23
  • 28