Podio Helper
Converting custom calculations field into section breaks.
Podio Helper क्या है?
Podio Helper Ancel.Designs द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Converting custom calculations field into section breaks."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Podio Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } |