ProcFu for GlobiFlow
Make using ProcFu remote post scripts easier in the GlobiFlow flow builder
Apa itu ProcFu for GlobiFlow?
ProcFu for GlobiFlow adalah ekstensi Chrome yang dikembangkan oleh https://procfu.com, dan fitur utamanya adalah "Make using ProcFu remote post scripts easier in the GlobiFlow flow builder".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi ProcFu for GlobiFlow
Unduh file ekstensi ProcFu for GlobiFlow dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | ProcFu for GlobiFlow |
ID | jpplggeamninpolmceelnkafpcegigam |
URL Resmi | https://chromewebstore.google.com/detail/procfu-for-globiflow/jpplggeamninpolmceelnkafpcegigam |
Deskripsi | Make using ProcFu remote post scripts easier in the GlobiFlow flow builder |
Ukuran File | 250 KB |
Jumlah Instalasi | 820 |
Versi Saat Ini | 1.2.16 |
Terakhir Diperbarui | 2022-07-06 |
Tanggal Publikasi | 2020-03-10 |
Penilaian | 5.00/5 Total 3 Penilaian |
Pengembang | https://procfu.com |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Kebijakan Privasi | http://globi.ca/privacy.php |
Bahasa yang Didukung | 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" ] } |