第1804回- Google 文件如何一次看兩頁?
今天在使用 Google 文件跟學生共同創作一個用餐禮儀短劇的劇本時,編寫到差不多的時候,想要一次展示兩頁給學生看,但發現 Google 文件在現階段沒有這個功能。
在 Google 文件中一次只能看一頁,真不方便!有沒有可能兩頁左右並排來觀看文件呢?
下班回家吃過晚餐、飯後散步時又想起這件事,回家後打開 Chromebook 上網查了一下資料,有找到一個方法,可以讓 Google 文件 像電腦的文書處理軟體或是PDF檢視器那樣,可以兩頁並排顯示。
我是用關鍵字 2-page view in google docs - Google 搜尋 找到這篇2-page view in Google Docs (Example) 但我看不懂要怎麼使用這一串指令?
不死心又繼續找,找到這篇,view 2 pages at once in google docs.,在註解中有提到: Use this JS in your google doc browser console,我就根據這個線索,在 Chrome 瀏覽器右上方三個點那邊選「更多工具」,然後選「開發人員工具」,點一下「Console」然後把以下這一串指令複製貼上:
// Use this JS in your google doc browser console
// Courtesy https://coderwall.com/p/qvdxia/2-page-view-in-google-docs
(function(d, t, z, s) {
s = d.createElement(t);
s.innerHTML = z + '-outer{left:0px !important;}' + z + '-outer,' + z + '-inner{width:100% !important;}.kix-page{float:left; width:48% !important;}';
d.getElementsByTagName(t)[0].parentNode.appendChild(s);
})(document, 'style', '.kix-zoomdocumentplugin');
複製貼上後,記得要再按一下鍵盤上的 enter 才會生效喔!
留言