This tool adds utm_campaign=deveco_gdemembers and utm_source=deveco to your current browser tab instantly.
It is a simple process.
-
Right-click your Bookmarks Bar and select Add Page or Bookmark Manager.
-
Set the Name to something clear, like "GDE UTM Tags".
-
Paste the following code into the URL or Address field:
javascript:(function() {
const url = new URL(window.location.href);
const params = new URLSearchParams(url.search);
params.set('utm_campaign', 'deveco_gdemembers');
params.set('utm_source', 'deveco');
url.search = params.toString();
window.location.href = url.toString();
})();
- Save the bookmark.
Navigate to any page you want to track. Click the bookmark. The page will reload with the tracking parameters appended to the URL. It is tidy. It is fast. It keeps your workflows organised without needing to manually edit strings in the address bar.