Why Salesforce

Stuff that Salesforce should have added already... Adding flow and user tabs into setup.

Τι είναι το Why Salesforce;

Το Why Salesforce είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.salesforcementor.com, και η κύρια λειτουργία του είναι "Stuff that Salesforce should have added already... Adding flow and user tabs into setup.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Why Salesforce

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

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

                        Add custom flow and user tabs to Salesforce setup. 
Tired of typing in "f-l-o-w" into the setup search. There has to be a better way?! Why not use all the space in the setup tab menu that Salesforce already give us? Well that's exactly what this extension does. I don't know about you but I've probably typed in user and flow into the setup at least a thousand time and it makes me go... why Salesforce.

Basically functionality that Salesforce should already have...

See more at https://github.com/walters954/why-salesforce
Privacy Policy: https://www.salesforcementor.com/privacy-policy-why-salesforce                    

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

Όνομα Why Salesforce Why Salesforce
ID ghakkjfjpnhpggbkfkeplbefkipfoaod
Επίσημο URL https://chromewebstore.google.com/detail/why-salesforce/ghakkjfjpnhpggbkfkeplbefkipfoaod
Περιγραφή Stuff that Salesforce should have added already... Adding flow and user tabs into setup.
Μέγεθος Αρχείου 250 KB
Αριθμός Εγκαταστάσεων 3,493
Τρέχουσα Έκδοση 1.3
Τελευταία Ενημέρωση 2023-08-09
Ημερομηνία Δημοσίευσης 2022-11-14
Αξιολόγηση 5.00/5 Συνολικά 12 Αξιολογήσεις
Προγραμματιστής https://www.salesforcementor.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/walters954/why-salesforce
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/walters954/why-salesforce
URL της Σελίδας Πολιτικής Απορρήτου https://www.salesforcementor.com/privacy-policy
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Why Salesforce",
    "version": "1.3",
    "permissions": [
        "storage"
    ],
    "description": "Stuff that Salesforce should have added already... Adding flow and user tabs into setup.",
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "*:\/\/*.lightning.force.com\/lightning\/setup\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "images\/whysf16.png",
        "32": "images\/whysf32.png",
        "48": "images\/whysf48.png",
        "128": "images\/whysf128.png"
    },
    "action": {
        "default_title": "Why Salesforce",
        "default_popup": "popup.html"
    }
}