1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-14 22:30:32 +05:30
yattee/Open in Yattee/content.js

27 lines
679 B
JavaScript
Raw Normal View History

2021-10-24 18:01:10 +05:30
if (document.readyState !== 'complete') {
window.addEventListener('load', redirectAndReplaceContentWithLink);
} else {
redirectAndReplaceContentWithLink();
}
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()
}
function replaceContentWithLink() {
2021-11-07 22:22:42 +05:30
document.querySelector('body').innerHTML = '<h1>' + yatteeLink() + '</h1>';
2021-10-24 18:01:10 +05:30
}
function redirectAndReplaceContentWithLink(){
redirect()
replaceContentWithLink()
}