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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |