Greasy Fork is available in English.

Allow F12

Allow to open Dev Tools on some website.

< Feedback on Allow F12

Review: Good - script works

§
Posted: 31 Juli 2023

Works very well.

A suggestion though, you can have a collapsed trace (if you wish) by adding:

ref: https://superuser.com/a/1793657

if(window.console && console.trace) {
    var oldTrace = console.trace;
    console.trace = function(msg) {
        console.groupCollapsed('trace ' + msg || 'trace');
        oldTrace.apply(this);
        console.groupEnd();
    }
}

Then, line 89 (https://greasyfork.org/en/scripts/436250-allow-f12/code#:~:text=%3B-,console.trace) you add

console.trace(i); // hidden in collapsed group

friendly

YJSNPIPembuat
§
Posted: 18 Oktober 2023

I'm improved it in latest version (v0.3.3), please upgrade and try it

Post reply

Sign in to post a reply.