connect-anticlip-comments

https://connect.microsoft.com/Connect/feedback/details/797558

当前为 2014-06-30 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name connect-anticlip-comments
  3. // @namespace http://userscripts.org/users/484734
  4. // @require https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js
  5. // @icon http://cdn.ohnopub.net/cdn/binki/images/connect-797558-logo-clipped.png
  6. // @description https://connect.microsoft.com/Connect/feedback/details/797558
  7. // @include https://connect.microsoft.com/*
  8. // @include http://connect.microsoft.com/*
  9. // @version 0.3
  10. // ==/UserScript==
  11. this.jQuery = jQuery.noConflict(true);
  12. this.jQuery(document).ready(function() {
  13. var s = document.createElement('style');
  14. s.textContent='.FeedbackDetailsTabPageOuterRegion{width:auto;}';
  15. jQuery('head').append(s);
  16. });