inbox button (now I have one...)
I have been a little frustrated with the forums and getting to the inbox quickly.
If anyone else is finding this an annoyance this may be a solution.
I use Chrome and it has an addon called tampermonkey.
this should also work with firefoxes addon, greasemonkey.
here is the very simple script I have written to give me a link straight to my forum inbox.
// ==UserScript==
// @name Adobe Forums Inbox Link
// @version 0.1
// @description adds a link directly to your inbox
// @author Qwertyfly
// @match https://forums.adobe.com/*
// ==/UserScript==
var Qitem = document.createElement ('li');
Qitem.innerHTML = '<a href="/inbox" class="j-globalNavLink j-ui-elem" role="menuitem"><span class="nav-link">inbox</span></a>';
Qitem.setAttribute ('id', 'myButton1');
Qitem.setAttribute ('class', 'active j-globalNav-li j-ui-elem')
document.getElementById ("j-globalNav").appendChild (Qitem);
if anyone would like to use this feel free.
also, let me know if you have improvements...
I'm happy to help anyone who needs a hand getting this up and running.
