mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-10 15:39:01 +00:00
14 lines
324 B
JavaScript
14 lines
324 B
JavaScript
/**
|
|
* notion-enhancer: titlebar
|
|
* (c) 2024 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
|
* (https://notion-enhancer.github.io/) under the MIT license
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
module.exports = async ({}, db) => {
|
|
Object.assign((globalThis.__notionConfig ??= {}), {
|
|
titlebarStyle: "hidden",
|
|
});
|
|
};
|