Podio Helper
Converting custom calculations field into section breaks.
Podio Helper란 무엇입니까?
Podio Helper은(는) Ancel.Designs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Converting custom calculations field into section breaks."입니다.
확장 프로그램 스크린샷
Podio Helper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
****If you are using 'Podio Night Mode', This is NOT Needed!!**** Podio currently does not offer a section break for Podio. This is a current solution. This also extends the width of your tables for more view. ------------------------ In order to use this extension. Create an APP with a calculation field. My Setup : 1. Modify Template 2. Create 'Text Field' named 'Separator' 3. Change 'Text Field' to 'Always Hidden' 4. Save Template 5. Reopen Modify Template (you do this so it saves the separator field) 6. Add 'Calculation Field' 7. Inside 'Calculation Field' enter 1 or 2 choices below: **HEADER ONLY: if (@Separator!=''){'Custom Header Info\n===\n'} **HEADER WITH ADDITIONAL TEXT: if (@Separator!=''){'Custom Header Info\n===\n' + 'additional information'} 8. Verify that the entry below has a blue '@Separator', otherwise it wont save, if 8. Save Template With this plugin installed you should now have a blue separator.
확장 프로그램 기본 정보
이름 | Podio Helper |
ID | fhjdnhpildnjpfelhpbicemjohfompdm |
공식 URL | https://chromewebstore.google.com/detail/podio-helper/fhjdnhpildnjpfelhpbicemjohfompdm |
설명 | Converting custom calculations field into section breaks. |
파일 크기 | 18.38 KB |
설치 횟수 | 90 |
현재 버전 | 15.3 |
최근 업데이트 | 2019-10-16 |
출시 날짜 | 2019-10-16 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Ancel.Designs |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "icons": { "16": "icon16.png", "32": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "exclude_globs": [ "" ], "include_globs": [ "*" ], "css": [ "styles.css" ], "js": [ "content.js" ], "matches": [ "*:\/\/podio.com\/*", "*:\/\/podio.com\/*" ], "exclude_matches": [ "*:\/\/podio.com\/webforms\/*", "*:\/\/podio.com\/login*", "*:\/\/podio.com\/*\/*\/*\/*\/edit*" ] } ], "description": "Converting custom calculations field into section breaks.", "name": "Podio Helper", "short_name": "Podio Helper", "version": "15.3" } |