Tatoeba Remove Sentence Links

Removes the links from the sentences for easier copying. Use the icons instead. (beta version, may cause bugs!)

  1. // ==UserScript==
  2. // @name Tatoeba Remove Sentence Links
  3. // @namespace Jakob V. <jakov@gmx.at>
  4. // @description Removes the links from the sentences for easier copying. Use the icons instead. (beta version, may cause bugs!)
  5. // @include http://tatoeba.org/*
  6. // @match http://tatoeba.org/*
  7. // @require http://code.jquery.com/jquery-1.7.js
  8. // @version 0.0.1.20150423133717
  9. // ==/UserScript==
  10. //
  11. $(document).ready(main);
  12.  
  13. function main() {
  14. $('.sentenceContent a').removeAttr('href');
  15. }