mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-06 05:29:02 +00:00
13 lines
336 B
JavaScript
13 lines
336 B
JavaScript
/**
|
|
* notion-enhancer: focus mode
|
|
* (c) 2020 Arecsu
|
|
* (c) 2021 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
|
* (https://notion-enhancer.github.io/) under the MIT license
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
export default async function (api, db) {
|
|
if (await db.get(['padded'])) document.body.dataset.focusMode = 'padded';
|
|
}
|