Skip to content

Instantly share code, notes, and snippets.

@yuya
Last active December 13, 2017 02:15
Show Gist options
  • Save yuya/7263ba41cbb1d73a7f93e27b9ecee1af to your computer and use it in GitHub Desktop.
Save yuya/7263ba41cbb1d73a7f93e27b9ecee1af to your computer and use it in GitHub Desktop.
[bookmarklet] 現在のシートのみを .xlsx 形式でダウンロード
javascript:(function(){var a=/^https:\/\/docs\.google\.com\/spreadsheets\/.+\/edit#gid=(\d+)$/;if(a.test(location.href)){var b=location.href.replace(/\/edit.+$/,"/export");a=["exportFormat=xlsx&format=xlsx","gid="+a.exec(location.href)[1]].join("&");window.open(b+"?"+a)}})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment