Podio Helper
Converting custom calculations field into section breaks.
Wat is Podio Helper?
Podio Helper is een Chrome-extensie ontwikkeld door Ancel.Designs, en de belangrijkste functie is "Converting custom calculations field into section breaks.".
Extensie Screenshots
Download het CRX-bestand van de extensie Podio Helper
Download Podio Helper-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
****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.
Basisinformatie over de Extensie
Naam | Podio Helper |
ID | fhjdnhpildnjpfelhpbicemjohfompdm |
Officiële URL | https://chromewebstore.google.com/detail/podio-helper/fhjdnhpildnjpfelhpbicemjohfompdm |
Beschrijving | Converting custom calculations field into section breaks. |
Bestandsgrootte | 18.38 KB |
Aantal Installaties | 90 |
Huidige Versie | 15.3 |
Laatst Bijgewerkt | 2019-10-16 |
Publicatiedatum | 2019-10-16 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Ancel.Designs |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } |