PorchLogic

visual elements for WorkFlowy systems

PorchLogic là gì?

PorchLogic là một tiện ích mở rộng Chrome được phát triển bởi https://porchlogic.com, và tính năng chính của nó là "visual elements for WorkFlowy systems".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng PorchLogic

Tải xuống các tệp mở rộng PorchLogic dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Define visual icons for your #tags in WorkFlowy                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên PorchLogic PorchLogic
ID mbljojmeanmcfpmpelgipeacbaijjeof
URL Chính Thức https://chromewebstore.google.com/detail/porchlogic/mbljojmeanmcfpmpelgipeacbaijjeof
Mô tả visual elements for WorkFlowy systems
Kích Thước Tệp 18.06 KB
Số Lần Cài Đặt 118
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2020-07-09
Ngày Phát Hành 2020-07-06
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://porchlogic.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://porchlogic.com/chrome-extension
URL Trang Trợ Giúp https://workflowy.com/s/chrome-extension-por/5uPDiR6ckYqaQCFZ
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PorchLogic",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "visual elements for WorkFlowy systems",
    "homepage_url": "https:\/\/porchlogic.com",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "PorchLogic"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+B"
            }
        }
    },
    "content_scripts": [
        {
            "css": [
                "style.css"
            ],
            "matches": [
                "https:\/\/*.workflowy.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "scripts\/buildTagIconMap.js"
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ]
}