BibSonomy BibTeX Link

Insert a Link to the BibTeX of the publications shown in a publication list into the main menu. When a BibSonomy page contains a list of publications, a link is appended to the main menu. The link's target is the BibTeX mass export of all publications in the list.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        BibSonomy BibTeX Link
// @namespace   notableTieView
// @description Insert a Link to the BibTeX of the publications shown in a publication list into the main menu. When a BibSonomy page contains a list of publications, a link is appended to the main menu. The link's target is the BibTeX mass export of all publications in the list.
// @include     http://www.bibsonomy.org/
// @include     http://www.bibsonomy.org/*
// @version     1
// @grant       none
// ==/UserScript==

bibtexLink = $("#bibtexListExport");
if (bibtexLink.length!=0) {
  $("#bs-navbar-collapse ul").eq(0).append('<li class=""><a href="'.concat(bibtexLink.attr('href')).concat('">BibTeX</a></li>'));
}