BTHLABS-82: Spring 2026 Refresh

Co-authored-by: Tomek Wójcik <labs@tomekwojcik.pl>
Co-committed-by: Tomek Wójcik <labs@tomekwojcik.pl>
This commit is contained in:
2026-03-16 19:09:38 +00:00
committed by Tomek Wójcik
parent c842657766
commit 3c71464663
22 changed files with 531 additions and 234 deletions

View File

@@ -6,6 +6,7 @@ import packageJSON from './package.json' with {type: 'json'};
import manifestChrome from './src/manifest/chrome.json' with {type: 'json'};
import manifestCommon from './src/manifest/common.json' with {type: 'json'};
import manifestFirefox from './src/manifest/firefox.json' with {type: 'json'};
import manifestOpera from './src/manifest/opera.json' with {type: 'json'};
import manifestSafari from './src/manifest/safari.json' with {type: 'json'};
const BANNER = `/*!
@@ -66,6 +67,11 @@ const manifestJsonOutputPlugin = () => {
...result,
...manifestFirefox,
};
} else if (TARGET == 'opera') {
result = {
...result,
...manifestOpera,
};
}
result.version = packageJSON.version;
@@ -110,6 +116,8 @@ export default [
},
{
src: [
'src/content/options.html',
'src/content/options.js',
'src/content/preauth.html',
'src/content/preauth.js',
],