Skip to content

Instantly share code, notes, and snippets.

@hayesgm
Last active August 29, 2015 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hayesgm/98ba143f74a4baa4c4a0 to your computer and use it in GitHub Desktop.
Save hayesgm/98ba143f74a4baa4c4a0 to your computer and use it in GitHub Desktop.
Base Extensions for Lash
[
{
"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