我想使用Google任务,而不必打开Gmail或Google日历或Google文档。我该怎么办?

过去曾经可以通过mail.google.com/tasks/canvas

#1 楼

Google使用此链接独立打开“任务”:
https://tasks.google.com/embed/?origin=https://calendar.google.com&fullWidth=1
如果您有多个Google帐户同时登录,您可以将目标帐户添加到链接网址中,如下所示:
https://tasks.google.com/embed/?origin=https://calendar.google.com&fullWidth=1&authuser =example@gmail.edu

评论


我加入只是为了谢谢你。任务可以再次在桌面上使用。这是一个书签,它将在第一次单击时加载页面,并在任务列表加载后再次单击时执行样式更改:javascript:if(!window.location.href.startsWith('https://tasks.google.com' )){window.location ='https://tasks.google.com/embed/?origin=https://calendar.google.com&fullWidth=1'}否则{document.querySelector('body')。style.display = null; }很高兴您可以立即为特定的任务列表添加书签,而这在画布中是无法做到的。现在,如果有人可以删除所有这些填充...

–丰富的苔藓
19年5月10日在16:26

我使用了上面提供的链接,并且效果很好。在我的情况下,不需要小书签。

–弗兰克·哈珀(Frank Harper)
20年1月22日,16:10

不再需要,谢谢您的评论

– simplegamer
20-2-2在16:58

很棒的坦克!从gtaskd-> chrome扩展名移至此!

– Karthik T
20-2-27在12:36

直接浏览到该链接就像是一种魅力。 +1

–奥斯丁院长
20年8月16日在4:02

#2 楼

现在,您可以在https://tasksboard.app/
上使用Google任务的网络界面。

评论


这太棒了。使在列表之间移动任务变得更容易。 🎉

– GollyJer
19年11月17日在23:36

谢谢!比这里的替代品好得多

–aclowkay
20年7月1日在10:48

谢谢,效果很好。非常容易使用,而且最好的部分是,当我们重新访问同一页面时,会自动加载CSS。

– Anmol Saraf
20年7月31日在6:20

#3 楼

我使用了具有task.google.com/embed链接的simplegamer解决方案,但对于javascript,我更喜欢油腻的monkey,因此每次可以节省1次点击。

这是我在油脂的monkey中使用的脚本: br />
// ==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


#4 楼

我也是Google Tasks Canvas的老用户,并且为它构建了一个完整的替代Web应用程序(带有升级),名为GTaskD,您可以免费使用该应用程序:https://tasks.gtaskd.com/

警告:2019年8月30日是Google摆脱API本身中的多个级别的子任务(而不只是它们的接口)的日期,因此第三方应用程序将不再能够直接支持它们。我正在构建自己的API /后端,该API /后端将与其同步,但是我无法免费提供该部分,因此需要支付少量费用。

#5 楼

您可以使用Chrome扩展程序全屏显示Google任务

#6 楼

@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);


#7 楼

或者,使用手写笔或其他用户样式表管理器:

@-moz-document url-prefix("https://tasks.google.com/embed/") {
body[style] {
  display: initial !important;
}
}