Skip to content

ianhouser/asana-bookmarklets

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 

Repository files navigation

Asana bookmarklets

Drag and drop links below to your browser bookmark bar, then navigate to an Asana page and click the bookmark to make the magic happen. For details, please see this forum topic.

1. Expand and Collapse Asana Sidebar

//Working again as of January 2023. Asana changed their CSS structure so this needed to be adjusted to match.

-Toggle expansion to 480px: ▶Expand Sidebar

Note: If you'd like to customize the width of the expansion, simply change the 480px in the beginning variable: var desiredWidth = '480px';

Here's the code if you'd like to see and tweak it: javascript:(function(){ var desiredWidth = '480px'; if (document.querySelector('#asana_sidebar').style.width != desiredWidth){document.querySelector('#asana_sidebar').style.width=desiredWidth;document.querySelector('.SidebarResizableContainer-sidebarWrapper').style.flex='0 0 ' + desiredWidth;}else{document.querySelector('#asana_sidebar').style.width='240px'; document.querySelector('.SidebarResizableContainer-sidebarWrapper').style.flex='0 0 240px'}})();

It checks the existing sidebar width and changes it to your desired width if it doesn't match, and changes it to the default width if it does. This results in a toggle of the sidebar width.

--- 2. More to come! Any suggestions let me know: ianhouser@gmail.com.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published