aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/keybase.io
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/keybase.io')
-rw-r--r--recipes/keybase.io/package.json2
-rw-r--r--recipes/keybase.io/webview.js16
2 files changed, 17 insertions, 1 deletions
diff --git a/recipes/keybase.io/package.json b/recipes/keybase.io/package.json
index f79e411..414a0ce 100644
--- a/recipes/keybase.io/package.json
+++ b/recipes/keybase.io/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "keybase.io", 2 "id": "keybase.io",
3 "name": "Keybase", 3 "name": "Keybase",
4 "version": "1.2.0", 4 "version": "1.3.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://keybase.io/login", 7 "serviceURL": "https://keybase.io/login",
diff --git a/recipes/keybase.io/webview.js b/recipes/keybase.io/webview.js
new file mode 100644
index 0000000..86bb422
--- /dev/null
+++ b/recipes/keybase.io/webview.js
@@ -0,0 +1,16 @@
1const _path = _interopRequireDefault(require('path'));
2
3function _interopRequireDefault(obj) {
4 return obj && obj.__esModule ? obj : { default: obj };
5}
6
7module.exports = Ferdium => {
8 // TODO: If your SNAME service has unread messages, uncomment these lines to implement the logic for updating the badges
9 // const getMessages = () => {
10 // // TODO: Insert your notification-finding code here
11 // Ferdium.setBadge(0, 0);
12 // };
13 // Ferdium.loop(getMessages);
14
15 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
16};