Shqyrtime për Rename Tab Title
Rename Tab Title nga Anush Veeranala
Shqyrtim nga 10122440 përdoruesi Firefox-i
Vlerësuar me 4 yje nga 5 të mundshëm
nga 10122440 përdoruesi Firefox-i, 7 vite më parëHey, I might've found a solution for dynamically updated titles. The following code listens for changes of the 'document.title' object and allows you to execute code when it changes. I would send a PR, but it doesn't seem that you're on any public VCS platform.
new MutationObserver(function(mutations) {
console.log(mutations);
// overwrite the title here
}).observe(
document.querySelector('title'),
{
subtree: true,
characterData: true,
childList: true
}
);
new MutationObserver(function(mutations) {
console.log(mutations);
// overwrite the title here
}).observe(
document.querySelector('title'),
{
subtree: true,
characterData: true,
childList: true
}
);