Last active
August 29, 2015 14:07
-
-
Save hayesgm/98ba143f74a4baa4c4a0 to your computer and use it in GitHub Desktop.
Base Extensions for Lash
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"id": "com.hayesgm.background-colorer", | |
"name" : "Background Colorer", | |
"desc": "Change background colors to blue.", | |
"pageScript": "document.body.style.background = 'blue';" | |
}, | |
{ | |
"id": "com.hayesgm.rotater", | |
"name" : "Rotater", | |
"desc": "Rotate all pages 30 degrees.", | |
"pageScript": "document.body.style.webkitTransform = 'rotate(+30deg)';" | |
}, | |
{ | |
"id": "com.hayesgm.zoomer", | |
"name" : "Zoomer", | |
"desc": "Zoom to 150%.", | |
"pageScript": "document.body.style.zoom = 1.5;" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment