{"id":16385455,"url":"https://github.com/yantze/workflowy_patch","last_synced_at":"2025-09-05T22:35:00.793Z","repository":{"id":69235401,"uuid":"112209148","full_name":"yantze/workflowy_patch","owner":"yantze","description":"Patch workflowy(chrome app) css and hotkey","archived":false,"fork":false,"pushed_at":"2018-07-27T08:19:16.000Z","size":669,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-01T00:41:39.572Z","etag":null,"topics":["workflowy"],"latest_commit_sha":null,"homepage":null,"language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yantze.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2017-11-27T14:51:40.000Z","updated_at":"2018-07-27T08:19:17.000Z","dependencies_parsed_at":null,"dependency_job_id":"025919b0-d0fe-4f5a-a30f-2dc1a96cb20a","html_url":"https://github.com/yantze/workflowy_patch","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/yantze/workflowy_patch","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yantze%2Fworkflowy_patch","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yantze%2Fworkflowy_patch/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yantze%2Fworkflowy_patch/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yantze%2Fworkflowy_patch/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yantze","download_url":"https://codeload.github.com/yantze/workflowy_patch/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yantze%2Fworkflowy_patch/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273832401,"owners_count":25176262,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-05T02:00:09.113Z","response_time":402,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["workflowy"],"created_at":"2024-10-11T04:14:33.295Z","updated_at":"2025-09-05T22:35:00.781Z","avatar_url":"https://github.com/yantze.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Workflowy Patch\n\u003e Only work macOS now.\n\nSimple Workflowy Layout, theme and add hotkey.\n\n## Install\nYou **MUST** install Workflowy Chrome version first:\n\nhttps://chrome.google.com/webstore/detail/workflowy/koegeopamaoljbmhnfjbclbocehhgmkm\n```\ngit clone https://github.com/yantze/workflowy_patch\ncd workflowy_patch\n./mod.sh\n```\n\nRestart Workflowy app\n\n\n## Theme\n- Light\n- Markdown\n\n## Add Hotkey\n- Go to end of file: \u003ckbd\u003eCtrl+Shift+G\u003c/kbd\u003e\n- Change theme: \u003ckbd\u003eCtrl+Shift+T\u003c/kbd\u003e\n- Change to Markdown: \u003ckbd\u003eCtrl+shift+M\u003c/kbd\u003e\n- Print: \u003ckbd\u003eCtrl+Shift+P\u003c/kbd\u003e\n- Copy current Node web url: \u003ckbd\u003eCtrl+Shift+C\u003c/kbd\u003e\n- Go Back: \u003ckbd\u003eCtrl + -\u003c/kbd\u003e, \u003ckbd\u003eCommand + [\u003c/kbd\u003e\n- Go Forward: \u003ckbd\u003eCtrl + +\u003c/kbd\u003e, \u003ckbd\u003eCommand + ]\u003c/kbd\u003e\n\n## Recommand Hotkey (default hotkey)\n- Go to end of line: \u003ckbd\u003eCtrl+e\u003c/kbd\u003e\n- Next/Before line: \u003ckbd\u003eCtrl+n/p\u003c/kbd\u003e\n\n## Get Title and url from HammerSpoon.app\nPut the code to init.lua and reload HammerSpoon\n```\n-- Type Browser Link\n-- Change from https://github.com/ashfinal/awesome-hammerspoon\n\nhs.hotkey.bind({'alt'}, 'v', function()\n  local safari_running = hs.application.applicationsForBundleID(\"com.apple.Safari\")\n  local chrome_running = hs.application.applicationsForBundleID(\"com.google.Chrome\")\n  local stat, data\n  if #safari_running \u003e 0 then\n    stat, data = hs.applescript('tell application \"Safari\" to get {URL, name} of current tab of window 1')\n  elseif #chrome_running \u003e 0 then\n    stat, data = hs.applescript('tell application \"Google Chrome\" to get {URL, title} of active tab of window 1')\n  end\n\n  if stat then\n    hs.eventtap.keyStrokes(data[2])\n    hs.eventtap.keyStroke({\"shift\"}, \"return\")\n    hs.eventtap.keyStrokes(data[1])\n  end\nend)\n```\n\n## ScreenShot\n\n### Light\n![theme-light](./screenshot/theme-light.png)\n\n\n### Markdown\n![theme-markdown](./screenshot/theme-markdown.png)\n\n\n## Tips（中文）\n如果要查找 Workflowy 中英文或者数字中的一部分，直接输入是找不到的\n\n比如我搜索 Application，那么 launchApplication 就不会被搜索到，而是要输入`\"Application\"` 才行\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyantze%2Fworkflowy_patch","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyantze%2Fworkflowy_patch","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyantze%2Fworkflowy_patch/lists"}