Bookmarks without Tags

Discuss issues and requests related with the forum software
User avatar
BGM
Posts: 507
Joined: 20 Nov 2013, 20:56
Contact:

Bookmarks without Tags

04 Jun 2018, 08:28

Normally, I subscribe to the autohotkey feed so I can see whenever folks make new posts in the scripts forum, but I don't have time to read them all and I want to save them for later. So I bookmark them in my browser.

However, the bookmarks always add the tags to the tab title - and this makes it too long to see in the bookmark panel in my Waterfox. The bookmark adds [32][script] to the page title of the bookmark. The [32] is notifications (which I rarely pay attention to) and the [script] is the forum tag.

So, what I'm asking is whether there is a way to bookmark pages in this forum without the tags getting included in the page title.

(I usually just drag tabs off into my bookmark folder in the bookmark panel in Waterfox)
User avatar
joedf
Posts: 8940
Joined: 29 Sep 2013, 17:08
Location: Canada
Contact:

Re: Bookmarks without Tags

04 Jun 2018, 10:50

I would probably automate this. This is really more on the client side. For instance Crtl+D bookmarks the currentpage
some provided solutions to inspire from. https://superuser.com/q/387729/122864
Image Image Image Image Image
Windows 10 x64 Professional, Intel i5-8500, NVIDIA GTX 1060 6GB, 2x16GB Kingston FURY Beast - DDR4 3200 MHz | [About Me] | [About the AHK Foundation] | [Courses on AutoHotkey]
[ASPDM - StdLib Distribution] | [Qonsole - Quake-like console emulator] | [LibCon - Autohotkey Console Library]
User avatar
BGM
Posts: 507
Joined: 20 Nov 2013, 20:56
Contact:

Re: Bookmarks without Tags

04 Jun 2018, 11:00

Thanks, Joe. I was hoping there was a forum setting that would toggle those tags being added to the title. I know I could find a client-side answer, but am lazy.
Helgef
Posts: 4709
Joined: 17 Jul 2016, 01:02
Contact:

Re: Bookmarks without Tags

04 Jun 2018, 11:04

The forum has bookmarks. Click the wrench with the down arrow, select Bookmark topic.
User avatar
BGM
Posts: 507
Joined: 20 Nov 2013, 20:56
Contact:

Re: Bookmarks without Tags

04 Jun 2018, 14:27

If I use the forum's bookmark function, is there a way to get rid of the confirmation message I have to click on every time?
User avatar
joedf
Posts: 8940
Joined: 29 Sep 2013, 17:08
Location: Canada
Contact:

Re: Bookmarks without Tags

04 Jun 2018, 21:38

Or you could use a greasemonkey script with something like

Code: Select all

// ==UserScript==
// @name         title notifs counter clear
// @namespace     https://autohotkey.com/boards/
// @version      1.0.0
// @description  removes notifs counter in window/tab title
// @author       joedf
// @include      https://autohotkey.com/boards/*
// ==/UserScript==
var original = window.document.getElementsByTagName('title')[0].innerHTML;
window.document.getElementsByTagName('title')[0].innerHTML = original.replace(/\(\d{1,3}\) /gi,'');
untested :ugeek:
Image Image Image Image Image
Windows 10 x64 Professional, Intel i5-8500, NVIDIA GTX 1060 6GB, 2x16GB Kingston FURY Beast - DDR4 3200 MHz | [About Me] | [About the AHK Foundation] | [Courses on AutoHotkey]
[ASPDM - StdLib Distribution] | [Qonsole - Quake-like console emulator] | [LibCon - Autohotkey Console Library]
User avatar
BGM
Posts: 507
Joined: 20 Nov 2013, 20:56
Contact:

Re: Bookmarks without Tags

06 Jun 2018, 11:13

Thanks, Joe - that's nice! It works like a charm, too! You are so kind!
Last edited by BGM on 11 Jun 2018, 10:59, edited 1 time in total.
User avatar
joedf
Posts: 8940
Joined: 29 Sep 2013, 17:08
Location: Canada
Contact:

Re: Bookmarks without Tags

07 Jun 2018, 14:42

no problemo! :+1:
Image Image Image Image Image
Windows 10 x64 Professional, Intel i5-8500, NVIDIA GTX 1060 6GB, 2x16GB Kingston FURY Beast - DDR4 3200 MHz | [About Me] | [About the AHK Foundation] | [Courses on AutoHotkey]
[ASPDM - StdLib Distribution] | [Qonsole - Quake-like console emulator] | [LibCon - Autohotkey Console Library]

Return to “Forum Issues”

Who is online

Users browsing this forum: No registered users and 36 guests