Skip to content

Instantly share code, notes, and snippets.

@refparo
Last active October 10, 2024 18:27
Show Gist options
  • Save refparo/1d4a0baee498c9cedf8d228ec7cfa0ad to your computer and use it in GitHub Desktop.
Save refparo/1d4a0baee498c9cedf8d228ec7cfa0ad to your computer and use it in GitHub Desktop.
Make Feedbro save unlimited number of feed entries
function setFeedMaxEntries(count = Number.MAX_SAFE_INTEGER) {
let f = chrome.extension.getBackgroundPage().feedbrobg
f.getSettings().setFeedMaxEntries(count)
f.saveSettings()
}
setFeedMaxEntries(Number.MAX_SAFE_INTEGER)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment