Minuteman Links

Adds links to search for books at the Minuteman Library Network in Massachusetts

当前为 2016-01-08 提交的版本,查看 最新版本

// ==UserScript==
// @name        Minuteman Links
// @namespace   https://gf.qytechs.cn
// @description Adds links to search for books at the Minuteman Library Network in Massachusetts
// @include     https://www.goodreads.com/*
// @include     http://www.goodreads.com/*
// @version     1.5
// @grant       none
// ==/UserScript==

var zBooks=jQuery('tr.bookalike td.title .value a');
for each ( var book in zBooks){
  jQuery("<p><a target='_blank' href=http://find.minlib.net/iii/encore/search/C__S"+encodeURIComponent(book.title)+">Find at Library</a></p>").appendTo(book.parentNode);
}
var zAuth=jQuery('tr.bookalike td.author .value a');
for each ( var author in zAuth){
  jQuery("<p><a target='_blank' href=http://find.minlib.net/iii/encore/search/C__S"+encodeURIComponent(author.textContent)+">Find at Library</a></p>").appendTo(author.parentNode);
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址