Always Edit Inline

Adds an ability to lauch inline editor, which is used by >2k users by default

  1. // ==UserScript==
  2. // @name Always Edit Inline
  3. // @version 1.0
  4. // @description Adds an ability to lauch inline editor, which is used by >2k users by default
  5. // @author nicael
  6. // @include *://*.stackexchange.com/questions/*
  7. // @include *://*stackoverflow.com/questions/*
  8. // @include *://*serverfault.com/questions/*
  9. // @include *://*superuser.com/questions/*
  10. // @include *://*askubuntu.com/questions/*
  11. // @include *://*stackapps.com/questions/*
  12. // @grant none
  13. // @namespace https://greatest.deepsurf.us/users/9713
  14. // ==/UserScript==
  15.  
  16. $(".suggest-edit-post").removeClass("suggest-edit-post").addClass("edit-post");StackExchange.using("inlineEditing", function () {StackExchange.inlineEditing.init();});