我想在 ieee 或 acm 的 url 之后添加我的大学的 url,以便我可以访问研究论文的 pdf
这个怎么做?
例如
更改链接,例如-
ieee.org/paper21
至
ieee.org.university.edu/paper21
我应该在 chrome 中创建什么样的书签来自动执行此操作,而不是.university.edu
每次在.org
我想在 ieee 或 acm 的 url 之后添加我的大学的 url,以便我可以访问研究论文的 pdf
这个怎么做?
例如
更改链接,例如-
ieee.org/paper21
至
ieee.org.university.edu/paper21
我应该在 chrome 中创建什么样的书签来自动执行此操作,而不是.university.edu
每次在.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');})()