Bugzilla Atom feed

Adds an Atom feed to Bugzilla reports, powered by bugzillatoatom.affine.space

目前为 2017-12-15 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Bugzilla Atom feed
  3. // @namespace http://forums.mozillazine.org/memberlist.php?mode=viewprofile&u=261941
  4. // @description Adds an Atom feed to Bugzilla reports, powered by bugzillatoatom.affine.space
  5. // @version 1.0
  6. // @author Gingerbread Man
  7. // @namespace Violentmonkey Scripts
  8. // @include https://bugzilla.mozilla.org/show_bug.cgi?id=*
  9. // @license http://creativecommons.org/licenses/by-sa/4.0/
  10. // @grant none
  11. // ==/UserScript==
  12. var le = document.createElement("link");
  13. le.rel = "alternate";
  14. le.type ="application/atom+xml";
  15. le.href = "https://bugzillatoatom.affine.space/convert?url="+window.location.href;
  16. document.head.appendChild(le);