- Frontend API
Provides a set of helper functions to integrate the service into Ferdium.
Sets the unread message badge
int
directMessages
- sets the count of direct messages eg. Slack direct mentions, or a message to @channel
int
indirectMessages (optional)
- Set a badge that defines there are new messages but they do not involve me directly to me eg. in a channel (default value: 0)
Ferdium.setBadge(4, 2);
// or
Ferdium.setBadge(3);
Sets the active dialog title to the app title
string
title
- sets the active dialog title eg. WhatsApp contact name
Ferdium.setDialogTitle('Dialog title');
Injects the contents of one or more CSS files into the current webview
string
cssFile
- CSS files that should be injected. This must be an absolute path to the file
const path = require('path');
// inject a single css file
Ferdium.injectCSS(path.join(__dirname, 'style.css'));
// inject multiple css files
const globalStyles = path.join(__dirname, 'global.css');
const focusModeStyles = path.join(__dirname, 'focusmode.css');
Ferdium.injectCSS(globalStyles, focusModeStyles);
Injects the contents of one or more JavaScript files into the current webview without context isolation
Ferdium uses context isolation to prevent services from accessing Node.js APIs in the webview.
If you want to expose objects to the service (eg. via the window
object) or interact with the Javascript loaded by the service you must do so from a script injected with this method.
Trying to overwrite properties of the window
object or other objects or trying to interact with the Javascript loaded by the service from webview.js
will fail due to context isolation.
The code is executed as if part of the body of a Javascript function, ie. you should modify the window
object explicitly to expose objects in the global scope.
string
jsFile
- JavaScript files that should be injected. This must be an absolute path to the file
const path = require('path');
// inject a single css file
Ferdium.injectJSUnsafe(path.join(__dirname, 'webview-unsafe.js'));
// inject multiple css files
const globalScripts = path.join(__dirname, 'global.js);
const focusModeScripts = path.join(__dirname, 'focusmode.js);
Ferdium.injectCSS(globalScripts, focusModeScripts);
Runs an action every X milliseconds (Ferdium default is currently 1s)
function
action
// slack integration
const path = require('path');
module.exports = Ferdium => {
const getMessages = () => {
const directMessages = $('.unread_highlights, .unread_highlight').not(
'.hidden',
).length;
const indirectMessages = $('.unread').length - directMessages;
Ferdium.setBadge(directMessages, indirectMessages);
};
Ferdium.loop(getMessages);
Ferdium.injectCSS(path.join(__dirname, 'style.css'));
};
Runs fn
on every notification created by the service before sending them to the host (Useful if you want to update information of the notification before showing it to the user)
function
fn
// messenger integration
module.exports = Ferdium => {
const getMessages = () => {
let count = document.querySelectorAll(
'._5fx8:not(._569x),._1ht3:not(._569x)',
).length;
const messageRequestsElement = document.querySelector('._5nxf');
if (messageRequestsElement) {
count += Ferdium.safeParseInt(messageRequestsElement.textContent);
}
Ferdium.setBadge(count);
};
Ferdium.loop(getMessages);
Ferdium.onNotify(notification => {
if (typeof notification.title !== 'string') {
notification.title =
((notification.title.props || {}).content || [])[0] || 'Messenger';
}
return notification;
});
};
You can use a darkmode.css
to automatically get the service into a dark theme. If your service already supports its own dark mode (e.g. Reddit and YouTube have built-in dark modes), then you can use a custom dark mode handler instead.
This handler should take the necessary steps to (de-)activate dark mode on the page, e.g. by clicking a button or flipping a switch.
Ferdium won't activate DarkReader or inject darkmode.css
if the recipe has defined a custom handler. If you still need to do this, you can use the injectDarkModeStyle
or enableDarkMode
function provided as the second argument.
function
callback
boolean
isEnabled: Is Dark Mode currently enabled?object
helpers: Helper functions that you can use in your function:enableDarkMode
- Enable DarkReaderdisableDarkMode
- Disable DarkReaderinjectDarkModeStyle
- Inject darkmode.cssremoveDarkModeStyle
- Remove service's darkmode.cssisDarkModeStyleInjected
- Function that returns true if darkmode.css is injected into the page
// Handler that works for Reddit
Ferdium.handleDarkMode((isEnabled, helpers) => {
// Open dropdown menu if not already open
const menu = document.querySelector('#USER_DROPDOWN_ID');
if (menu.getAttribute('aria-expanded') === 'false') {
menu.click();
}
setTimeout(() => {
// Check if service is already in right mode
const btn = document.querySelector('[role=menu] button button');
const checked = btn.getAttribute('aria-checked') === 'true';
if ((checked && !isEnabled) || (!checked && isEnabled)) {
// Click the button to switch between modes
btn.click();
}
}, 50);
});
// --- or ---
// Helper that activates DarkReader and injects your darkmode.css at the same time
Ferdium.handleDarkMode((isEnabled, helpers) => {
if (isEnabled) {
helpers.enableDarkMode();
if (!helpers.isDarkModeStyleInjected()) {
helpers.injectDarkModeStyle();
}
} else {
helpers.disableDarkMode();
helpers.removeDarkModeStyle();
}
})
While exiting/closing/disabling the service, if you want to clear the local storage, you can use this method to effect the same.
id
of the recipe- struct of
storages
Ferdium.clearStorageData(settings.id, {
storages: [
'appcache',
'serviceworkers',
'cachestorage',
'websql',
'indexdb',
],
});
While exiting/closing/disabling the service, if you want to release any service workers, you can use this method to effect the same.
A utility method that can be used to safely parse the text content (handles nulls, undefined, etc). Basically a wrapper around parseInt
- but handles the safety checks.
stringText
String to be parsed into a number. (Could benull
orundefined
) Defaults to0
Ferdium.safeParseInt(mySelector.innerText)
A utility method that can be used to verify if a link is an image. Returns true
if is image and false
if it is not an image.
url
Url to be parsed.
Ferdium.isImage(link)
When you want to set the title of the Ferdium window (while this service is active or in focus), you can use this function
title
: The title to be set (for eg: the chat message person/group name in whatsapp)
Ferdium.setDialogTitle(element ? element.textContent : null);