ProcFu for GlobiFlow
Make using ProcFu remote post scripts easier in the GlobiFlow flow builder
什么是ProcFu for GlobiFlow?
ProcFu for GlobiFlow是由https://procfu.com开发的Chrome扩展程序,该扩展的主要功能是“Make using ProcFu remote post scripts easier in the GlobiFlow flow builder”。
扩展截图
下载ProcFu for GlobiFlow扩展crx文件
下载ProcFu for GlobiFlow扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
ProcFu is a hosted collection of scripts that make GlobiFlow for Podio better. The browser extension simplifies adding and troubleshooting Remote POST actions in GlobiFlow that utilize ProcFu scripts.
扩展基本信息
名称 | ProcFu for GlobiFlow |
ID | jpplggeamninpolmceelnkafpcegigam |
官方URL | https://chromewebstore.google.com/detail/procfu-for-globiflow/jpplggeamninpolmceelnkafpcegigam |
简介 | Make using ProcFu remote post scripts easier in the GlobiFlow flow builder |
文件大小 | 250 KB |
安装次数 | 820 |
当前版本 | 1.2.16 |
更新时间 | 2022-07-06 |
上架时间 | 2020-03-10 |
评分 | 5.00/5 共3次评分 |
开发者 | https://procfu.com |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | http://globi.ca/privacy.php |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "author": "Globi Web Solutions", "name": "ProcFu for GlobiFlow", "description": "Make using ProcFu remote post scripts easier in the GlobiFlow flow builder", "version": "1.2.16", "icons": { "32": "pf_icon_32.png", "48": "pf_icon_48.png", "128": "pf_icon_128.png" }, "permissions": [ "storage", "tabs", "cookies", "https:\/\/workflow-automation.podio.com\/", "https:\/\/procfu.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/workflow-automation.podio.com\/configureflow.php*" ], "js": [ "jquery.min.js", "procfu.js", "pfToken.js", "pfSelector.js", "pfConnect.js", "pfStep.js", "pfFunction.js", "pfEditor.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/procfu.lcldev.globi.ca\/settings.php*", "https:\/\/*.procfu.com\/settings.php*", "https:\/\/procfu.com\/settings.php*", "https:\/\/procfu.lcldev.globi.ca\/account\/settings\/*", "https:\/\/*.procfu.com\/account\/settings\/*", "https:\/\/procfu.com\/account\/settings\/*" ], "js": [ "pf2.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "jquery.min.js", "background.js" ], "persistent": true }, "browser_action": { "default_icon": "pf_icon_32.png", "default_popup": "pfOptions.html" }, "web_accessible_resources": [ "jquery.min.js" ] } |