Not quite an external tool, but I found something that’s helped me easily create a referral link for products. This creates a favorite/bookmark and when clicked, it reloads the page and appends your referral code to the end of the url. You can adjust it so it creates a popup you can copy. No more going to find your referral code and adding it on manually!
This is in Edge, but others are similar.
Step 1. Go to the top right “…” and select Favorites
Step 2. In the new window, go to the top “…” and click “Open Favorites Page”
Step 3. Click “Add Favorite” from the top
Step 4. Name it “Add Z Ref” or something
Step 5. In the url field, paste the below text after updating your referral number
For page reload:
javascript: (() => { const affiliateCode = “your_rf_number_here”; const url = window.location.href; const separator = url.includes(‘?’) ? ‘&’ : ‘?’; window.location.href = url + separator + “rf=” + affiliateCode; })();
For popup to copy:
javascript: (() => { const affiliateCode = “your_rf_number_here”; const url = window.location.href; const separator = url.includes(‘?’) ? ‘&’ : ‘?’;alert(url + separator + “rf=” + affiliateCode); })();
Leave it all on one line. The tutorial I found had each line on separate carriage returned lines and it didn’t work that way. Hope this helps!
