Skip to content

Commit

Permalink
updated defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
KentoNishi committed May 26, 2024
1 parent d0a9555 commit 0beba27
Showing 1 changed file with 57 additions and 2 deletions.
59 changes: 57 additions & 2 deletions src/ts/storage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,63 @@ export const enableStickySuperchatBar = stores.addSyncStore('ytcf.enableStickySu
export const enableHighlightedMentions = stores.addSyncStore('ytcf.enableHighlightedMentions', false);
export const lastOpenedVersion = stores.addSyncStore('ytcf.lastOpenedVersion', '');
export const chatFilterPresets = stores.addSyncStore('ytcf.chatFilterPresets', [{
filters: [],
nickname: 'Preset 1',
filters: [
{
"conditions": [
{
"caseSensitive": false,
"invert": false,
"needsClear": true,
"property": "message",
"type": "tltag",
"value": "en"
}
],
"enabled": true,
"id": "IqhLrwTVEL",
"type": "basic"
},
{
"conditions": [
{
"caseSensitive": false,
"invert": false,
"property": "moderator",
"type": "boolean"
}
],
"enabled": true,
"id": "berdVtyXHw",
"type": "basic"
},
{
"conditions": [
{
"caseSensitive": false,
"invert": false,
"property": "owner",
"type": "boolean"
}
],
"enabled": true,
"id": "qUYNRyhzQy",
"type": "basic"
},
{
"conditions": [
{
"caseSensitive": false,
"invert": false,
"property": "verified",
"type": "boolean"
}
],
"enabled": true,
"id": "gEljlegSPX",
"type": "basic"
}
],
nickname: 'Example Preset',
id: INITIAL_PRESET_ID,
triggers: [],
activation: 'manual'
Expand Down

0 comments on commit 0beba27

Please sign in to comment.