PorchLogic
visual elements for WorkFlowy systems
What is PorchLogic?
PorchLogic is a Chrome extension developed by https://porchlogic.com, and its main feature is "visual elements for WorkFlowy systems".
Extension Screenshots
Download PorchLogic Extension CRX File
Download PorchLogic extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Define visual icons for your #tags in WorkFlowy
Extension Basic Information
Name | PorchLogic |
ID | mbljojmeanmcfpmpelgipeacbaijjeof |
Official URL | https://chromewebstore.google.com/detail/porchlogic/mbljojmeanmcfpmpelgipeacbaijjeof |
Description | visual elements for WorkFlowy systems |
File Size | 18.06 KB |
Installation Count | 118 |
Current Version | 0.0.2 |
Last Updated | 2020-07-09 |
Publish Date | 2020-07-06 |
Rating | 4.00/5 Total 1 Ratings |
Developer | https://porchlogic.com |
[email protected] | |
Payment Type | free |
Extension Website | http://porchlogic.com/chrome-extension |
Help Page URL | https://workflowy.com/s/chrome-extension-por/5uPDiR6ckYqaQCFZ |
Supported Languages | 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" ] } |