laphylee
laphylee
For example, when node [[App]] has an alias "app": Case 1: With Dendron enabled, I created a new node [[app.Chrome]], the Matrix view will show the parent as "app", but...
Wiz原声的Markdown能识别“#Header”(没有空格)为标题,虽然不是标准做法。我已有的文档都是采取这种方式。切换到Editor.md就识别不了了。有办法能通过配置修改吗?或是在某个地方加上customized的code?谢谢!
我的目标是用Quicker的搜索功能快速列出全部已经打开的PPT窗口和PPT网页,两个地方的标题模式是不一样的,传统的客户端的PPT窗口可以用PowerPoint或您说的powerpnt.exe过滤,但网页端的PPT tab标题是以“”.pptx“结尾。所以写了如下的code。 希望支持V3服务器脚本:批量修改标签页的标题,可以支持用正则表达式来进行查找和替换。 ``` //.js chrome.windows.getLastFocused({populate:true}, function(win){ var title = "hello"; for(var tab of win.tabs){ title = title + "\r\n" + tab.title; if(tab.title.endsWith(".pptx")) chrome.tabs.executeScript(tab.id, {code: `document.title += " - PowerPoint"`})...
和您的这个脚本类似:[子程序切换标签或打开网址](https://getquicker.net/SubProgram?id=2e862e5b-3a0e-45ee-b3fc-08db05106307) 但是希望能支持打开网址时的窗口类型和窗口状态: ``` chrome.windows.create({ url: '{url}', // 您想打开的网址 type: 'popup', // 窗口类型 state: 'maximized' // 窗口状态(如:最大化) ```