Added Fix for installation.
This commit is contained in:
parent
e16e7c2595
commit
7dddd9bdfd
1 changed files with 20 additions and 4 deletions
24
README.md
24
README.md
|
|
@ -6,7 +6,7 @@
|
|||
2. There is NO NEED to use never ending reddit to load as many comments / submissions. This script uses the actual Reddit API endpoints to edit and delete instead of automating clicks on delete and edit buttons. *\*ahem, reddit overwrite\**
|
||||
3. It's pretty damn thorough. It will first load up your comments page(s), then load your submissions page(s), then do searches with the reddit search api. With EACH of those, it sorts by new, then hot, then top, then controversial. And if we're sorting by top or controversial, it will loop through the timeframes as well (all, year, month, week, day, hour). This makes sure to grab everything it can possibly find.
|
||||
4. It has FILTERS! You can make choices about what you want deleted. Filters include:
|
||||
* choosing which subreddits to perform actions in
|
||||
* choosing which subreddits to perform actions on
|
||||
* filtering based on the item's score
|
||||
* filtering based on the item's date time
|
||||
* excluding gilded comments and posts
|
||||
|
|
@ -23,9 +23,25 @@
|
|||
|
||||

|
||||
|
||||
## Installation
|
||||
|
||||
[](https://codepen.io/j0be/full/WMBWOW/)
|
||||
## Installation
|
||||
|
||||
***Firefox***: Open the Hamburger menu> Bookmarks --> Manage Bookmarks --> Right Click on empty space --> Add Bookmark --> Paste the code below into the URL section --> Save --> Done!
|
||||
|
||||
***Chromium/Chrome***: Go to `chrome://bookmarks/` --> Right click on empty space --> Add new bookmark --> Paste the code below into the URL section --> Save --> Done!
|
||||
|
||||
***Edge***: Press the three dots --> Favorites --> Star with a plus icon --> Right click the new favorite --> Edit --> Paste the code below into the URL section --> Save --> Done!
|
||||
|
||||
***Brave***: Go to `chrome://bookmarks` --> Right click on empty space --> Add new bookmark --> Paste the code below into the URL section --> Save --> Done!
|
||||
|
||||
```javascript:(function() { window.bookmarkver = '1.4'; var isReddit = document.location.hostname.split('.').slice(-2).join('.') === 'reddit.com'; var isOverview = !! document.location.href.match(/\/overview\b/i); if (isReddit && isOverview) { var cachBustUrl = 'https://raw.githubusercontent.com/j0be/PowerDeleteSuite/master/powerdeletesuite.js?' + (new Date().getDate()); fetch(cachBustUrl).then(function(response) { return response.text(); }).then(function(data) { var script = document.createElement('script'); script.id = 'pd-script'; script.innerHTML = data; document.getElementsByTagName('head')[0].appendChild(script); }).catch(function() { alert('Error retrieving PowerDeleteSuite from GitHub'); }); } else if (confirm('This script can only be run from your own user profile on Reddit. Would you like to go there now?')) { document.location = 'https://old.reddit.com/u/me/overview'; } else { alert('Please go to your Reddit profile before running this script'); } })();```
|
||||
|
||||
## Usage
|
||||
|
||||
- Go to your [account overview.](https://old.reddit.com/u/me/overview)
|
||||
|
||||
- Click on the bookmark you made while focused on the account overview tab.
|
||||
|
||||
- Adjust settings to your prefrences.
|
||||
|
||||
## Bugs / Issues?
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue