ProcFu for GlobiFlow
Make using ProcFu remote post scripts easier in the GlobiFlow flow builder
Was ist ProcFu for GlobiFlow?
ProcFu for GlobiFlow ist eine Chrome-Erweiterung, die von https://procfu.com entwickelt wurde, und ihr Hauptmerkmal ist "Make using ProcFu remote post scripts easier in the GlobiFlow flow builder".
Erweiterungsscreenshots
ProcFu for GlobiFlow-Erweiterungs-CRX-Datei herunterladen
Laden Sie ProcFu for GlobiFlow-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | jpplggeamninpolmceelnkafpcegigam |
| Offizielle URL | https://chromewebstore.google.com/detail/procfu-for-globiflow/jpplggeamninpolmceelnkafpcegigam |
| Beschreibung | Make using ProcFu remote post scripts easier in the GlobiFlow flow builder |
| Dateigröße | 250 KB |
| Installationsanzahl | 820 |
| Aktuelle Version | 1.2.16 |
| Letztes Update | 2022-07-06 |
| Veröffentlichungsdatum | 2020-03-10 |
| Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
| Entwickler | https://procfu.com |
| [email protected] | |
| Zahlungsart | free |
| URL der Datenschutzrichtlinien-Seite | http://globi.ca/privacy.php |
| Unterstützte Sprachen | 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"
]
} | |