Restore Revision Time Visual Text in Google Apps

Brings back visual last edit text in drive apps due to M3 migration by Google.

< Відгуки до Restore Revision Time Visual Text in Google Apps

Відгук: OK - script works, but has bugs

§
Опубліковано: 02.01.2024

Useful script! Worked for awhile but broke because Google changed their CSP. Luckily it is simple to fix. Add this at the top of the function:

const escapeHTMLPolicy = trustedTypes.createPolicy("default", {
    createHTML: (string) => string,
});

Then tweak the two lines that set use HTML strings to use the sanitization function as follows:

const fragmentForRevisionVisualTextHTML = rangeForRevisionVisualTextHTML.createContextualFragment(escapeHTMLPolicy.createHTML(revisionVisualTextHTML));
revisionVisualTextElement.innerHTML = escapeHTMLPolicy.createHTML(revisionTextFromButton);
zachthedevАвтор
§
Опубліковано: 02.01.2024

Thanks! I just posted the update.

Опублікувати відповідь

Sign in to post a reply.