スタンドアロンのウェブでGoogleタスクを使用する方法


回答:


20

Googleのこのリンクを使用して、スタンドアロンのタスクを開きます。

https://tasks.google.com/embed/?origin=https://calendar.google.com&fullWidth=1


2
本当にありがとうございました。タスクはデスクトップで再び使用可能です。タスクリストが読み込まれた後にもう一度クリックすると、最初のクリックでページを読み込み、スタイルの変更を実行する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; }ブックマークレットは次のとおり です。特定のタスクリストを今すぐブックマークできるので、キャンバスではできません。誰かがそのすべてのパディングを削除できたら...
Rich Moss

上記のリンクを使用しましたが、完全に機能しました。私の場合、ブックマークレットは必要ありませんでした。
フランクハーパー、

それはもはや、あなたのコメントに感謝を必要としないです
simplegamer

素晴らしいです、ありがとう!gtaskd-> chome拡張からこれに移動しました!
Karthik T


1

私は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

1

私はまた、古いGoogle Tasks Canvasユーザーであり、無料で使用できるGTaskDと呼ばれる完全な代替Webアプリケーション(アップグレード済み)を作成しました。https://tasks.gtaskd.com/

警告:2019-08-30は、Googleが API自体の複数のレベルのサブタスクを(それらのインターフェースだけではなく)取り除く日であるため、サードパーティのアプリはそれらを直接直接サポートできなくなります。彼らと同期する独自のAPI /バックエンドを構築していますが、その部分を無料にすることはできないため、少額の手数料がかかります。



0

どういうわけか@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);

0

または、スタイラス、または別のユーザースタイルシートマネージャーを使用します。

@-moz-document url-prefix("https://tasks.google.com/embed/") {
body[style] {
  display: initial !important;
}
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.