回答:
Googleのこのリンクを使用して、スタンドアロンのタスクを開きます。
https://tasks.google.com/embed/?origin=https://calendar.google.com&fullWidth=1
これで、https://tasksboard.app/に Google TasksのWebインターフェイスができました。
私はtasks.google.com/embedリンクでsimplegamerソリューションを使用しましたが、javascriptではgreasemonkeyを好むため、毎回1クリックを節約できます。
これは、私がgreasemonkeyで使用するスクリプトです。
// ==UserScript==
// @name google tasks
// @version 1
// @grant none
// ==/UserScript==
// @match https://tasks.google.com/embed/list/~default?fullWidth=1
// @match https://tasks.google.com/embed/?origin=https://calendar.google.com&fullWidth=1
javascript:document.querySelector('body').style.display=null
Googleタスクに Chrome拡張機能の全画面を使用できます
どういうわけか@kokosnakokosのユーザースクリプトが私のブラウザで機能しませんでした。私はそれをstyle
タグで動作させました:
// ==UserScript==
// @name google tasks
// @match https://tasks.google.com/embed/*
// @grant none
// ==/UserScript==
var s = document.createElement('style');
s.textContent = 'body { display: inline !important }';
document.head.appendChild(s);
javascript: if(!window.location.href.startsWith('https://tasks.google.com')){window.location = 'https://tasks.google.com/embed/?origin=https://calendar.google.com&fullWidth=1'} else {document.querySelector('body').style.display=null; }
ブックマークレットは次のとおり です。特定のタスクリストを今すぐブックマークできるので、キャンバスではできません。誰かがそのすべてのパディングを削除できたら...