PageEditor

Allows you to edit web pages easily for taking fake screenshots or videos!

  1. // ==UserScript==
  2. // @name PageEditor
  3. // @namespace https://ardenxie.weebly.com
  4. // @version 1.2
  5. // @description Allows you to edit web pages easily for taking fake screenshots or videos!
  6. // @author Arden Xie
  7. // @match http://*/*
  8. // @match https://*/*
  9. // @grant none
  10. // @copyright 2016 Arden Xie
  11. // @icon http://nationhost.co.uk/images/128x128/copy_page.png
  12. // ==/UserScript==
  13.  
  14. function edit(){
  15. document.body.contentEditable='true';
  16. document.designMode='on';
  17. void 0;
  18. }
  19. edit();