Codeys - Admin toolbox for Salesforce

Admin toolbox for Salesforce by codeys

Τι είναι το Codeys - Admin toolbox for Salesforce;

Το Codeys - Admin toolbox for Salesforce είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Codeys (Julie Boncour et David LEROUX), και η κύρια λειτουργία του είναι "Admin toolbox for Salesforce by codeys".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Codeys - Admin toolbox for Salesforce

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

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

                        Codeys admin toolbox for Salesforce was created to help Salesforce administrators.

You just need to navigate to your Salesforce org, and the extension will enable you to :
- [NEW] Profile - RT displayer [NEW]
- Open the perm set assigner 
- Direct link to open the current page layout and record type ! 
- Use this extension as One-Time Password Authenticator for orgs with Salesforce MFA (key is stored in localStorage)
- Salesforce ERD Generator : Select the objects and see the ERD ! 
- Add or modify object rights (profile and perm set) via the object manager
- View information regarding your current user : Name, Id and Profile (Name and Id)
- View information regarding your Salesforce org : Id, API Usage and a link to Company Information Org page (both in Classic, and Lightning)
- Switch between enhanced profiles view or old view in a click
- Switch your user current language between french and english in a click
- View information regarding your last view object information : Object Name, Record Id, Page Layout, Name
- Have a direct link to Salesforce Trust / Status website based on your server alias
- Have a unique view of permission and FLS on an object (button in the object manager page)                    

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

Όνομα Codeys - Admin toolbox for Salesforce Codeys - Admin toolbox for Salesforce
ID cdfhmgeblolfchoghibdfgbcjinngbcc
Επίσημο URL https://chrome.google.com/webstore/detail/codeys-admin-toolbox-for/cdfhmgeblolfchoghibdfgbcjinngbcc
Περιγραφή Admin toolbox for Salesforce by codeys
Μέγεθος Αρχείου 601 KB
Αριθμός Εγκαταστάσεων 293
Τρέχουσα Έκδοση 0.0.0.8
Τελευταία Ενημέρωση 2023-01-19
Ημερομηνία Δημοσίευσης 2020-07-31
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Codeys (Julie Boncour et David LEROUX)
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Codeys - Admin toolbox for Salesforce",
    "version": "0.0.0.8",
    "description": "Admin toolbox for Salesforce by codeys",
    "permissions": [
        "declarativeContent",
        "storage",
        "activeTab",
        "cookies",
        "webNavigation",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/*.salesforce.com\/*",
        "https:\/\/*.lightning.force.com\/*",
        "https:\/\/*.force.com\/*",
        "https:\/\/*.cloudforce.com\/*",
        "https:\/\/*.visualforce.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.salesforce.com\/_ui\/identity\/verification\/policy\/*",
                "https:\/\/*.salesforce.com\/_ui\/identity\/toopher\/AddToopherUi*",
                "https:\/\/*.salesforce.com\/_ui\/identity\/verification\/method\/ToopherVerificationFinishUi*",
                "https:\/\/*.salesforce.com\/_ui\/identity\/verification\/method\/ToopherVerificationStartUi\/*"
            ],
            "js": [
                "js\/skipVerifLink.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/*.salesforce.com\/identity\/twofactor\/registrationInterstitial*",
                "https:\/\/*.salesforce.com\/_ui\/identity\/twofactor\/AddTwoFactorUi*"
            ],
            "js": [
                "lib\/jsOTP.min.js",
                "js\/totp.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/*.salesforce.com\/_ui\/identity\/verification\/method\/TotpVerificationUi*"
            ],
            "js": [
                "lib\/jsOTP.min.js",
                "js\/totp.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "action": {
        "default_popup": "html\/popup.html",
        "default_icon": {
            "16": "img\/logo.png",
            "32": "img\/logo.png",
            "48": "img\/logo.png",
            "128": "img\/logo.png"
        }
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "manifest_version": 3
}