InviTube/content.js

5 lines
187 B
JavaScript
Raw Permalink Normal View History

2023-09-03 15:33:31 +00:00
if (location.href.startsWith("https://www.youtube.com")) {
2024-08-21 07:52:16 +00:00
browser.runtime.sendMessage("showInvidiousPageAction");
2023-09-03 15:33:31 +00:00
} else {
2024-08-21 07:52:16 +00:00
browser.runtime.sendMessage("showYoutubePageAction");
2023-09-03 15:33:31 +00:00
}