Brightness Bookmarklet


/ Published in: JavaScript
Save to your folder(s)

for firefox


Copy this code and paste it in your HTML
  1. javascript:(function(){var bs=document.getElementsByTagName('body');var b=bs.item(0);var d=document.createElement('div');var s=d.style;s.backgroundColor='#000';s.zIndex='999';s.position='fixed';s.top='0';s.left='0';s.width='100%';s.height='100%';s.MozOpacity='0.05';b.appendChild(d);})()

URL: http://kyokutyo.com/brightness/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.