j0be / PowerDeleteSuite

Power Delete Suite for Reddit
1.63k stars 105 forks source link

Arc Browser Usage #60

Closed MitchTalmadge closed 4 months ago

MitchTalmadge commented 6 months ago

Just wondering if anyone has figured out how to use this with the Arc Browser. It doesn't seem like I can save a "pinned tab" (Arc's idea of "bookmarks") with Javascript in it.

I'll update if I figure anything out.

MitchTalmadge commented 6 months ago

The current best way I've figured out is to:

  1. Install the Powerlet chrome extension, which lets you run the bookmarklet from an extension: https://chromewebstore.google.com/detail/powerlet/ofecodkcadbenmiknnidnfepbblapgkn
  2. Open Powerlet and add the bookmarklet (copy and paste the JS from the README in this repo)
  3. Run the bookmarklet from Powerlet

It's not the best, I wish I didn't have to install an extension, but I guess this works.

wadie commented 4 months ago

You could also open the console and paste in the code we have in the README


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/mykola2312/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'); } })();```