diff --git a/README.md b/README.md index cadfd0d..b61fd9f 100644 --- a/README.md +++ b/README.md @@ -187,6 +187,14 @@ these include: ![](https://user-images.githubusercontent.com/16874139/90522144-b6768080-e1ae-11ea-8150-527c1f70f0e7.png) +### hide help button + +**tags:** #extension + +**description:** hide the help button if you don't need it + +**author**: [coryzibell](https://github.com/coryzibell/) + ### neutral **tags:** #theme #dark diff --git a/mods/hide-help/mod.js b/mods/hide-help/mod.js new file mode 100644 index 0000000..3d5a69e --- /dev/null +++ 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 new file mode 100644 index 0000000..26defb3 --- /dev/null +++ b/mods/hide-help/styles.css @@ -0,0 +1,3 @@ +.notion-help-button { + display: none !important; +} \ No newline at end of file