PorchLogic
visual elements for WorkFlowy systems
Wat is PorchLogic?
PorchLogic is een Chrome-extensie ontwikkeld door https://porchlogic.com, en de belangrijkste functie is "visual elements for WorkFlowy systems".
Extensie Screenshots
Download het CRX-bestand van de extensie PorchLogic
Download PorchLogic-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Define visual icons for your #tags in WorkFlowy
Basisinformatie over de Extensie
Naam | PorchLogic |
ID | mbljojmeanmcfpmpelgipeacbaijjeof |
Officiële URL | https://chromewebstore.google.com/detail/porchlogic/mbljojmeanmcfpmpelgipeacbaijjeof |
Beschrijving | visual elements for WorkFlowy systems |
Bestandsgrootte | 18.06 KB |
Aantal Installaties | 118 |
Huidige Versie | 0.0.2 |
Laatst Bijgewerkt | 2020-07-09 |
Publicatiedatum | 2020-07-06 |
Beoordeling | 4.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | https://porchlogic.com |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | http://porchlogic.com/chrome-extension |
Help Pagina-URL | https://workflowy.com/s/chrome-extension-por/5uPDiR6ckYqaQCFZ |
Ondersteunde Talen | 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" ] } |