Update Elements with ID lister to 1.0.14
- Explicitly set target=_self for links so that they don't open in another tab for sites with <base target=_blank> (example: https://www.cia.gov/the-world-factbook/countries/chad)
This commit is contained in:
parent
3496751789
commit
7483e3e4af
|
@ -6,7 +6,7 @@
|
|||
// @grant GM_getResourceURL
|
||||
// @require https://cdn.jsdelivr.net/npm/dialog-polyfill@0.5.6/dist/dialog-polyfill.min.js#sha256-cec1a2e320aab77e28bad4ad6bc5e532a6ef5757345c19bb5158aa880b7162a6
|
||||
// @resource dialogPolyfillCSS https://cdn.jsdelivr.net/npm/dialog-polyfill@0.5.6/dist/dialog-polyfill.min.css#sha256-4dcb3ab62e545f30bf06a4824c253641ee889ca85ca28d5447590557922496ab
|
||||
// @version 1.0.13
|
||||
// @version 1.0.14
|
||||
// @author blankie
|
||||
// @description A userscript that adds a "Show elements popup" option to the Monkey Menu which lists all elements with an ID
|
||||
// @inject-into content
|
||||
|
@ -191,6 +191,7 @@ function getElementListItem(element, id) {
|
|||
let a = document.createElement("a");
|
||||
newLocation.hash = a.innerText = "#" + id;
|
||||
a.href = newLocation.href;
|
||||
a.target = "_self";
|
||||
a.addEventListener("click", function(e) {
|
||||
if (e.ctrlKey) {
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue