WorkFlowy MultiFlow

Multi-column view for WorkFlowy

WorkFlowy MultiFlow란 무엇입니까?

WorkFlowy MultiFlow은(는) Dave Stewart에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Multi-column view for WorkFlowy"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

WorkFlowy MultiFlow 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        WorkFlowy MultiFlow adds a multi-column view to WorkFlowy, which enables you to maintain an overview of, or relationship between, several WorkFlowy documents at once.

It can also make moving data within large lists easier, as you can open a new column and cut and paste between columns, rather than scrolling up and down or collapsing and uncollapsing bullets.

Columns are opened by Cmd/Ctrl+Clicking on:

- Bullets
- Internal WorkFlowy links
- Breadcrumb items
- Left navigation items

You can open as many columns as you need, changes layouts, and even save sessions.

Version 2.0.0 has a new initialisation routine, which should hopefully fix any longstanding and unusual layout bugs occasionally caused in version 1.0.0.

See the home page for more info.                    

확장 프로그램 기본 정보

이름 WorkFlowy MultiFlow WorkFlowy MultiFlow
ID khjdmjcmpolknpccmaaipmidphjokhdf
공식 URL https://chromewebstore.google.com/detail/workflowy-multiflow/khjdmjcmpolknpccmaaipmidphjokhdf
설명 Multi-column view for WorkFlowy
파일 크기 126 KB
설치 횟수 2,213
현재 버전 2.1.0
최근 업데이트 2023-09-20
출시 날짜 2021-02-04
평점 4.65/5 총 31 개의 평점
개발자 Dave Stewart
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://davestewart.co.uk/products/workflowy-multiflow/
도움말 페이지 URL https://github.com/davestewart/workflowy-multiflow/issues
개인정보 보호 정책 페이지 URL https://github.com/davestewart/better-fastmail/blob/main/PRIVACY.md
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WorkFlowy MultiFlow",
    "description": "Multi-column view for WorkFlowy",
    "version": "2.1.0",
    "manifest_version": 2,
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAoWDu35r1oWfV8YVlJbXNOpqL3lhgO4wgyb7dfAcl6trIfwsQSg2W3EERJDbN3LzhYEmvszbrQlot+scVpK9WM94HbXag8IBEIiIh24WmX6xlv5PT3j2ibccXiJ9x\/sCaP2MGRzPNkkO1hJjBIup6ogn3\/U3ynbQ6lqdtYI9Ju0IWSNXIt493Ch\/dvD1cjxPzLLcCcrU9O50evAm\/gFknFiPla6UKqU6ApkUpnwO3L3emphEXtKcK1I\/VfzCFDJ\/7PUnOKVBiLwbQWZjSfhdLtdzdwovGgklr4XmicpEL\/\/k5HO9zTjXd8eEL6Yo0ik1Kk\/Skm9226B9rQnL6Od9WgwIDAQAB",
    "icons": {
        "16": "assets\/icons\/icon-16.png",
        "32": "assets\/icons\/icon-32.png",
        "48": "assets\/icons\/icon-48.png",
        "128": "assets\/icons\/icon-128.png"
    },
    "permissions": [
        "https:\/\/workflowy.com\/*",
        "https:\/\/*.workflowy.com\/*",
        "declarativeNetRequest",
        "declarativeContent",
        "activeTab"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background\/background.js"
        ]
    },
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "web_accessible_resources": [
        "https:\/\/workflowy.com\/*",
        "https:\/\/*.workflowy.com\/*",
        "assets\/icons\/*",
        "content\/content.html",
        "content\/content.css"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/workflowy.com\/*",
                "https:\/\/*.workflowy.com\/*"
            ],
            "all_frames": false,
            "run_at": "document_idle",
            "js": [
                "content\/content.js"
            ],
            "css": [
                "content\/content.css"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup\/popup.html",
        "default_title": "WorkFlowy MultiFlow",
        "default_icon": {
            "32": "assets\/icons\/icon-16.png"
        }
    },
    "content_security_policy": "default-src chrome-extension:\/\/khjdmjcmpolknpccmaaipmidphjokhdf\/*; script-src 'self' 'unsafe-eval'; object-src 'self'; img-src * 'self' data: https: http: chrome: chrome:\/\/favicon\/"
}