PressThis by GoSystems

Enhance the Infusionsoft dashboard by turning numbers into buttons and generate PRESS THIS buttons to replace links to Forms.

Τι είναι το PressThis by GoSystems;

Το PressThis by GoSystems είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://goproposal.com, και η κύρια λειτουργία του είναι "Enhance the Infusionsoft dashboard by turning numbers into buttons and generate PRESS THIS buttons to replace links to Forms.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης PressThis by GoSystems

Λήψη αρχείων επέκτασης PressThis by GoSystems σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        BENEFITS
Enhance your Infusionsoft dashboards with

- Buttons instead of numbers
- A dark background for ease of viewing
- Numbers which you can turn red if you want them to
- Change the colour of headers depending on priority 
- A more easily accessible refresh button
- A better placed close button
- Clickable links in saved searches
- Opens in new tabs to retain the dashboard or saved searches
- Tabs to make your dashboard easier to manage

HOW TO CREATE TABS
To create tabs, include square brackets and a name within the title of a widget, for it to appear on that tab. Eg [STATS]
All widgets with [STATS] in the title will appear within that tab.
Widgets can feature under multiple tabs Eg [STATS][FINANCE]
All widgets will appear under the ALL tab
Tabs are arrange in alphabetical order

HOW TO CHANGE THE COLOUR OF HEADERS
To change the colour of headers, you just need to add a different character into the title:

Blue - Standard, so you don't need to add anything
Red - Add a *
Grey - Add a _
Any Colour - Add brackets and the hexidecimal code (#333333)


HOW TO MAKE THE BUTTONS TURN RED
If a number needs actioning, you can turn them read to make them stand out. To do this simply add the phrase "Get these to 0" in the title or include a @ symbol.

If there's a specific number you don't want turning red, include a ~ in that specific stat title.


HOW TO TURN LINKS INTO BUTTONS
If you want to turn links within saved searches into buttons, simply add [X] to the title of the custom field.


PLEASE NOTE - These changes only affect Custom Statistics and if they don't take effect straight away, just refresh the whole page.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα PressThis by GoSystems PressThis by GoSystems
ID ggpepnogmkpnjnlcigjnedkgkkkiebob
Επίσημο URL https://chromewebstore.google.com/detail/pressthis-by-gosystems/ggpepnogmkpnjnlcigjnedkgkkkiebob
Περιγραφή Enhance the Infusionsoft dashboard by turning numbers into buttons and generate PRESS THIS buttons to replace links to Forms.
Μέγεθος Αρχείου 33.74 KB
Αριθμός Εγκαταστάσεων 95
Τρέχουσα Έκδοση 6.1.0
Τελευταία Ενημέρωση 2021-01-14
Ημερομηνία Δημοσίευσης 2019-05-30
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής https://goproposal.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PressThis by GoSystems",
    "short_name": "PressThis",
    "description": "Enhance the Infusionsoft dashboard by turning numbers into buttons and generate PRESS THIS buttons to replace links to Forms.",
    "version": "6.1.0",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.infusionsoft.com\/*"
            ],
            "js": [
                "vendor\/zepto\/zepto.min.js",
                "content\/dashboardPage.js"
            ],
            "css": [
                "content\/dashboardPage.css",
                "content\/dashboardBox.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.infusionsoft.com\/Dashboard\/*"
            ],
            "js": [
                "vendor\/zepto\/zepto.min.js",
                "content\/dashboardBox.js"
            ],
            "css": [
                "content\/dashboardBox.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.infusionsoft.com\/Reports\/*"
            ],
            "js": [
                "vendor\/zepto\/zepto.min.js",
                "content\/report.js"
            ],
            "css": [
                "content\/report.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.infusionsoft.com\/app\/*"
            ],
            "js": [
                "vendor\/zepto\/zepto.min.js",
                "content\/form.js"
            ],
            "css": [
                "content\/form.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "*:\/\/*.infusionsoft.com\/*"
    ]
}