NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name External link new taber // @version 0.2.13 // @description this code opens external links in new tab (crude solution) // @author jerry // @license GPL-3.0-or-later; http://www.gnu.org/licenses/gpl-3.0.txt // @icon https://cdn1.iconfinder.com/data/icons/feather-2/24/external-link-32.png // @icon64 https://cdn1.iconfinder.com/data/icons/feather-2/24/external-link-128.png // @run-at document-end // @grant GM_getValue // @grant GM_setValue // @grant GM_openInTab // @match https://neurojobs.sfn.org/* // @match https://www.higheredjobs.com/* // @match https://www.alzforum.org/jobs* // @match https://www.higheredjobs.com/* // @match https://sprweb.org/networking* // @match https://careers.cccu.org/jobs/* // @match https://jobs.psychologicalscience.org/jobs/* // @match https://chroniclevitae.com/job_search* // ==/UserScript== // @match http*://*/* // var links = document.getElementsByClassName('bti-job-detail-link'); var links = document.links; for (var i = 0; i < links.length; i++){ links[i].target="_blank"; }