blob: b08877e68a8aaeed2c71d5a219e4f7d2ab2eae9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import Config from "../config";
export function runCompatibilityChecks() {
if (Config.config.showZoomToFillError2 && document.URL.includes("watch?v=")) {
setTimeout(() => {
const zoomToFill = document.querySelector(".zoomtofillBtn");
if (zoomToFill) {
alert(chrome.i18n.getMessage("zoomToFillUnsupported"));
}
Config.config.showZoomToFillError2 = false;
}, 10000);
}
}
|