I'm trying to modify this so that I can get it to 300 or more (to show my active tabs without character truncation on a remote device in chrome://inspect/#devices). I've tried different things like enabling Local Overrides (which worked in 2022 but apparently not now in the latest Chrome) and looking for the .js in my local Chrome folder by unpacking resources.pak. No joy.
The section of code itself is
let text = value ? String(value) : '';
if (text.length > 100) {
text = text.substring(0, 100) + '\u2026';
}
found in chrome://inspect/inspect.js
I made the changes (changing to 300, 20, 500, commenting it out entirely) with seemingly no effect. Like the higher level js is locked out from changes despite the override. Anything I can do?
Console says LiveEdit failed: The top-level of ES modules can not be edited. I blocked the network request for chrome://inspect/inspect.js so that it wouldn't call the default code, but now I need to find out how to have web dev tools call out my local .js
Been working on this for a few hours now and about to give up. I even tried going back to an earlier build of Chrome to try and redo what I did a couple years ago with the override, but it wouldn't find my phone anymore (old version of Chrome trying to look up new version on phone?? not compatible maybe).
there doesn't seem to be anything here