Skip to content

Instantly share code, notes, and snippets.

@kechol
Last active December 22, 2015 08:49
Show Gist options
  • Select an option

  • Save kechol/6447757 to your computer and use it in GitHub Desktop.

Select an option

Save kechol/6447757 to your computer and use it in GitHub Desktop.
a bookmarklet to chat in public at Google Docs.
(function() {
var d = document;
d.getElementsByClassName("docs-chat-pane-container")[0].setAttribute("style", "width:100%; left:0");
d.getElementsByClassName("docs-chat-edit-container")[0].setAttribute("style", "width:100%; padding:15px; box-sizing:border-box");
d.getElementsByClassName("docs-chat-users")[0].setAttribute("style", "height:60px; overflow-y:scroll");
d.getElementsByClassName("docs-chat-edit-box")[0].setAttribute("style", "position:static; top:auto; left:auto; width:100%");
d.getElementsByClassName("docs-chat-messages")[0].setAttribute("style", "font-size:32px; line-height:1.4");
})();
// bookmarklet
// javascript:(function() { var d = document; d.getElementsByClassName("docs-chat-pane-container")[0].setAttribute("style", "width:100%; left:0"); d.getElementsByClassName("docs-chat-edit-container")[0].setAttribute("style", "width:100%; padding:15px; box-sizing:border-box"); d.getElementsByClassName("docs-chat-users")[0].setAttribute("style", "height:60px; overflow-y:scroll"); d.getElementsByClassName("docs-chat-edit-box")[0].setAttribute("style", "position:static; top:auto; left:auto; width:100%"); d.getElementsByClassName("docs-chat-messages")[0].setAttribute("style", "font-size:32px; line-height:1.4"); })();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment