blob: 34c8def46bc125450fdf85a340569fb4fc61356a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
export default {
defaultBrowser: "LibreWolf",
rewrite: [
{
match: "x.com/*",
url: (url) => {
url.host = "xcancel.com";
return url;
},
},
],
handlers: [
{
match: "bsky.app/*",
browser: "LirbeWolf",
}
],
};
|