Skip to content

Instantly share code, notes, and snippets.

View mi-lee's full-sized avatar

Michelle Lee mi-lee

View GitHub Profile
@mi-lee
mi-lee / github-100vw.js
Last active March 20, 2018 23:15
Bookmarklet - Markdown files on GitHub.com: 100 viewport and no overflow
javascript:(function(){document.querySelectorAll('body *').forEach(function(obj){obj.style.maxWidth="100vw"});document.querySelector('body').style.overflowX = 'hidden'}());
@mi-lee
mi-lee / open-in-chrome.js
Created July 12, 2017 05:55
Open a link in iOS Safari to Chrome. Bookmark for ease of access
javascript:location.href=%22googlechrome%22+location.href.substring(4)
@mi-lee
mi-lee / remove-signin.js
Last active July 4, 2017 22:12
remove linkedin modal bookmarklet. select and drag the text to your bookmarks bar.
javascript:(function(){document.querySelector('#advocate-modal').remove(); document.querySelector('.advocate-modal-visible').classList.remove('advocate-modal-visible')}());