6 lines
275 B
JavaScript
6 lines
275 B
JavaScript
|
|
condition = function () {
|
|
var href = window.location.href;
|
|
var content = document.documentElement.innerHTML;
|
|
return href.startsWith("https://playerduo.com") && content.startsWith('<head></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">')
|
|
} |