Bookmarks without Tags

Post a reply


In an effort to prevent automatic submissions, we require that you complete the following challenge.
Smilies
:D :) ;) :( :o :shock: :? 8-) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :!: :?: :idea: :| :mrgreen: :geek: :ugeek: :arrow: :angel: :clap: :crazy: :eh: :lolno: :problem: :shh: :shifty: :sick: :silent: :think: :thumbup: :thumbdown: :salute: :wave: :wtf: :yawn: :facepalm: :bravo: :dance: :beard: :morebeard: :xmas: :HeHe: :trollface: :cookie: :rainbow: :monkeysee: :monkeysay: :happybday: :headwall: :offtopic: :superhappy: :terms: :beer:
View more smilies

BBCode is ON
[img] is OFF
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Bookmarks without Tags

Re: Bookmarks without Tags

Post by joedf » 07 Jun 2018, 14:42

no problemo! :+1:

Re: Bookmarks without Tags

Post by BGM » 06 Jun 2018, 11:13

Thanks, Joe - that's nice! It works like a charm, too! You are so kind!

Re: Bookmarks without Tags

Post by joedf » 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:

Re: Bookmarks without Tags

Post by BGM » 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?

Re: Bookmarks without Tags

Post by Helgef » 04 Jun 2018, 11:04

The forum has bookmarks. Click the wrench with the down arrow, select Bookmark topic.

Re: Bookmarks without Tags

Post by BGM » 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.

Re: Bookmarks without Tags

Post by joedf » 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

Bookmarks without Tags

Post by BGM » 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)

Top