Greasy Fork is available in English.

WME Segment ID Mover

Removes the segment ids from the top of the edit panel and places them at the bottom, as well as moving the segment warnings as well.

Δημιουργός
FXZFun
Ημερήσιες εγκαταστάσεις
0
Σύνολο εγκαταστάσεων
43
Βαθμολογίες
0 0 0
Έκδοση
1.0
Δημιουργήθηκε την
18/06/2022
Ενημερώθηκε την
16/03/2023
Άδεια
GNU GPL v3
Εφαρμόζεται σε

Removes the segment ids and segment warnings from the top of the edit panel and puts them at the bottom of the edit panel in WME to create more space for editing details. If you still want the warnings, comment out line 31, or consider this related script: https://greasyfork.org/en/scripts/449727-wme-simple-alert-messages

You can also use it as a bookmarklet, just run it when you first load the page:

javascript:W.selectionManager.events.register('selectionchanged',this,()=>{if(W.selectionManager.hasSelectedFeatures()){setTimeout(()=>{document.querySelector(".elementHistoryContainer").insertAdjacentElement("beforeBegin",document.querySelector("wz-caption.feature-id"));},200);}});

Or to just hide the current segment ids:

javascript:document.querySelector(".elementHistoryContainer").insertAdjacentElement("beforeBegin",document.querySelector("wz-caption.feature-id"));

Update includes moving segment warnings to the bottom as well as the ids.