yattee/Open in Yattee/content.js

18 lines
417 B
JavaScript
Raw Normal View History

2021-10-24 12:31:10 +00:00
if (document.readyState !== 'complete') {
2022-06-30 16:41:09 +00:00
window.addEventListener('load', redirect);
2021-10-24 12:31:10 +00:00
} else {
2022-06-30 16:41:09 +00:00
redirect();
2021-10-24 12:31:10 +00:00
}
function yatteeUrl() {
return window.location.href.replace(/^https?:\/\//, 'yattee://');
}
function yatteeLink() {
return '<a href="'+ yatteeUrl() +'" onclick=\'window.location.href="'+ yatteeUrl() +'"\'>Open in Yattee</a>';
}
function redirect() {
window.location.href = yatteeUrl()
}