mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 05:09:03 +00:00
21 lines
548 B
JavaScript
21 lines
548 B
JavaScript
/*
|
|
* always on top
|
|
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
|
* under the MIT license
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
// this is just a pseudo mod to "separate" the button
|
|
// from the core module - the core still handles actually
|
|
// making it work.
|
|
module.exports = {
|
|
id: '72886371-dada-49a7-9afc-9f275ecf29d3',
|
|
tags: ['extension'],
|
|
name: 'always on top',
|
|
desc:
|
|
"add an arrow/button to show the notion window on top of other windows even if it's not focused.",
|
|
version: '0.1.1',
|
|
author: 'dragonwocky',
|
|
};
|