diff --git a/mods/hide-help/mod.js b/mods/hide-help/mod.js index e69de29..3d5a69e 100644 --- a/mods/hide-help/mod.js +++ b/mods/hide-help/mod.js @@ -0,0 +1,16 @@ +/* + * notion-enhancer + * (c) 2020 dragonwocky (https://dragonwocky.me/) + * under the MIT license + */ + +'use strict'; + +module.exports = { + id: 'd4ebe9f3-974a-4c01-a6a9-94bc4296851d', + tags: ['extension'], + name: 'hide help button', + desc: 'hide help button if you don\'t need it.', + version: '1.0.0', + author: 'coryzibell', +}; diff --git a/mods/hide-help/styles.css b/mods/hide-help/styles.css index e69de29..26defb3 100644 --- a/mods/hide-help/styles.css +++ b/mods/hide-help/styles.css @@ -0,0 +1,3 @@ +.notion-help-button { + display: none !important; +} \ No newline at end of file