Last active
December 13, 2017 02:15
-
-
Save yuya/7263ba41cbb1d73a7f93e27b9ecee1af to your computer and use it in GitHub Desktop.
[bookmarklet] 現在のシートのみを .xlsx 形式でダウンロード
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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