bypass preview extension - #81

This commit is contained in:
dragonwocky 2020-09-08 22:44:51 +10:00
parent 6dbef0e292
commit 211b24d2d7
Signed by: dragonwocky
GPG Key ID: C7A48B7846AA706D
2 changed files with 45 additions and 0 deletions

View File

@ -37,6 +37,7 @@ a feature and cleanup update.
even if it's not focused. even if it's not focused.
- extension: "calendar scroll" = add a button to scroll down to the current week for you. - extension: "calendar scroll" = add a button to scroll down to the current week for you.
- extension: "hide help button" = hide the help button if you don't need it. - extension: "hide help button" = hide the help button if you don't need it.
- extension: "bypass preview" = go straight to the normal full view when opening a page.
// todo // todo

View File

@ -0,0 +1,44 @@
/*
* bypass preview
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
* under the MIT license
*/
'use strict';
module.exports = {
id: 'cb6fd684-f113-4a7a-9423-8f0f0cff069f',
tags: ['extension'],
name: 'bypass preview',
desc: 'go straight to the normal full view when opening a page.',
version: '0.1.0',
author: 'dragonwocky',
hacks: {
'renderer/preload.js'(store, __exports) {
document.addEventListener('readystatechange', (event) => {
if (document.readyState !== 'complete') return false;
const attempt_interval = setInterval(enhance, 500);
function enhance() {
const notion_elem = document.querySelector(
'.notion-default-overlay-container'
);
if (!notion_elem) return;
clearInterval(attempt_interval);
process();
const observer = new MutationObserver(process);
observer.observe(notion_elem, {
childList: true,
subtree: true,
});
function process(list, observer) {
let preview = document.querySelector(
'.notion-peek-renderer [style*="height: 45px;"] a'
);
if (preview) preview.click();
}
}
});
},
},
};