Pages

7 Oct 2013

Make Any Website Editable Using .js

Make Any Website Editable Using Javascript

Have you ever wanted to edit the web page of another website? JavaScript makes it possible. Using a single line of code you will be able to do that.


Many scammers  uses this trick to create fake screenshots, Affiliate earnings, Adsense earnings and even Paypal transactions .

There are two codes:

javascript:document.body.contentEditable = 'true'; document.designMode='on'; void 0

javascript:document.body.contentEditable = 'false'; document.designMode='off'; void 0

The first one allows you to make the content editable and second locks it, so that no further editing is possible. The second code only works in Chrome.

Firefox and IE users can simply open up the page which they wish to edit and paste the first code completely replacing the web address and hit Enter. The page is now editable. For Chrome, open the Conole tab by pressing Ctrl+Shift+J and paste the code and hit Enter. After the editing is done paste the second code to finalize.

No comments :

Post a Comment