Gmail、Googleカレンダー、Googleドキュメントを開かなくてもGoogle Tasksを使用したいのですが、どうすればよいですか?
以前はmail.google.com/tasks/canvasで可能でした
回答
Googleのこのリンクを使用して開きますスタンドアロンのタスク:
https://tasks.google.com/embed/?origin=https://calendar.google.com&fullWidth=1
複数のGoogleがある場合同時にログインしたアカウントでは、次のようにターゲットアカウントをリンクURLに追加できます:
コメント
回答
これで、 https://tasksboard.app/
コメント
- これは素晴らしいです。リスト間でタスクを移動するのがずっと簡単になります。 🎉
- ありがとう!ここでの代替案よりもはるかに優れています
- ありがとう、非常にうまく機能します。非常に使いやすく、最良の部分は、同じページに再度アクセスしたときにcssを自動ロードすることです。
回答
tasks.google.com/embed リンクを使用したsimplegamerソリューションを使用しましたが、JavaScriptの場合はグリースモンキーを使用するため、毎回1クリック節約できます。
これは私がグリースモンキーで使用するスクリプトです:
// ==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
回答
I 「また、古いGoogle Tasks Canvasユーザーであり、無料で使用できるGTaskDと呼ばれる完全な代替Webアプリ(アップグレードあり)を作成しました: https://tasks.gtaskd.com/
警告:2019-08-30は、 Googleが複数レベルのサブタスクを削除する日付です API自体に(インターフェースだけでなく)含まれているため、サードパーティのアプリはそれらを直接サポートできなくなります。私は彼らと同期する独自のAPI /バックエンドを構築していますが、その部分を無料にすることはできないため、少額の料金がかかります。
回答
Chrome拡張機能 Googleタスクの全画面
回答<を使用できます/ h2>
どういうわけか@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);
回答
または、スタイラスまたは別のユーザースタイルシートマネージャーを使用:
@-moz-document url-prefix("https://tasks.google.com/embed/") { body[style] { display: initial !important; } }
どういうわけか@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);
または、スタイラスまたは別のユーザースタイルシートマネージャーを使用:
@-moz-document url-prefix("https://tasks.google.com/embed/") { body[style] { display: initial !important; } }
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; }
特定のタスクリストを今すぐブックマークできるのは嬉しいです。 hキャンバスでは'できませんでした。誰かがそのパディングをすべて削除できたら…