Last active
October 10, 2024 18:27
-
-
Save refparo/1d4a0baee498c9cedf8d228ec7cfa0ad to your computer and use it in GitHub Desktop.
Make Feedbro save unlimited number of feed entries
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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