PorchLogic

visual elements for WorkFlowy systems

什么是PorchLogic?

PorchLogic是由https://porchlogic.com开发的Chrome扩展程序,该扩展的主要功能是“visual elements for WorkFlowy systems”。

扩展截图

screenshot

下载PorchLogic扩展crx文件

下载PorchLogic扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Define visual icons for your #tags in WorkFlowy                    

扩展基本信息

名称 PorchLogic PorchLogic
ID mbljojmeanmcfpmpelgipeacbaijjeof
官方URL https://chromewebstore.google.com/detail/porchlogic/mbljojmeanmcfpmpelgipeacbaijjeof
简介 visual elements for WorkFlowy systems
文件大小 18.06 KB
安装次数 118
当前版本 0.0.2
更新时间 2020-07-09
上架时间 2020-07-06
评分 4.00/5 共1次评分
开发者 https://porchlogic.com
电子邮箱 [email protected]
付费类型 free
扩展官网 http://porchlogic.com/chrome-extension
帮助页面URL https://workflowy.com/s/chrome-extension-por/5uPDiR6ckYqaQCFZ
支持的语言 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"
    ]
}