SFDC Shortcuts

Collections of useful shortcuts and utilities for Salesforce Developers and Admins.

ما هو SFDC Shortcuts؟

SFDC Shortcuts هو إضافة Chrome تم تطويرها بواسطة Basant Kumar Verma، والميزة الرئيسية لها هي "Collections of useful shortcuts and utilities for Salesforce Developers and Admins.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة SFDC Shortcuts

قم بتنزيل ملفات الامتداد SFDC Shortcuts بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Collections of few useful shortcuts for Salesforce Developers and Admins. 
Such as
 - Alawys open SFDC Dev Console in a new tab:  Salesforce has retired the ability to open the developer console in a new tab, instead it opens in a new stripped window. This can be little annoying and hence I have built this extension to allow the opening of the developer console in a new tab.
 - Quick navigation to setup:  Provides keyboard short key allow navigation to Setup page.
 - Quick switch to classic: Provides keyboard short key allow switching from Lightning to Classic experience.
 - Organization Banners: You can configure your desired banners for all different-different Salesforce organizations/environments. It's very useful when working on multiple organizations, helps to distinguish between them

*Features*
 - Shortcuts for many useful navigation
 - Works only Salesforce pages.
 - Handles for both Classic and Lightning Experience
 - Support Incognito mode
 - Open new tab just after the active tab
 - Does not open multiple tabs for same org
 - Show alert notification for all unauthenticated Salesforce pages
 - Organization banners configuration

*Supported Action*
Below are the list of all supported action
 - Open Developer Console
 - Navigate to Setup
 - Switch to Salesforce Classic
 - Switch to Lightning
 - Open Extension's Options
 
*Tips*
 - Please vist Options page (Right Click on Extension and Click on Options) and configure your preferences shortkeys and actions 
 - We Prefer to use shortkeys to quickly perform desired actions.
 
*Limitations*
 - Due to Chrome Web Store Policies, as single extension can only have four shortkeys + one default Shortkey for extension click                    

معلومات أساسية عن التمديد

الاسم SFDC Shortcuts SFDC Shortcuts
ID ipnmkbccfebbcgfkanhndipldcmdpaji
عنوان URL الرسمي https://chromewebstore.google.com/detail/sfdc-shortcuts/ipnmkbccfebbcgfkanhndipldcmdpaji
الوصف Collections of useful shortcuts and utilities for Salesforce Developers and Admins.
حجم الملف 29.86 KB
عدد التثبيتات 438
النسخة الحالية 2.134
آخر تحديث 2020-03-12
تاريخ النشر 2020-03-11
تقييم 5.00/5 مجموع تقييمات 10
المطور Basant Kumar Verma
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://bkvpoc-developer-edition.ap4.force.com/POCs/s/
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Basant Kumar Verma",
    "short_name": "SFDC Shortcuts",
    "name": "SFDC Shortcuts",
    "version": "2.134",
    "description": "Collections of useful shortcuts and utilities for Salesforce Developers and Admins.",
    "incognito": "split",
    "permissions": [
        "notifications",
        "storage",
        "https:\/\/*.force.com\/",
        "https:\/\/*.salesforce.com\/",
        "https:\/\/*.visualforce.com\/"
    ],
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.force.com\/*",
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.visualforce.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "ShortKey_1": {
            "suggested_key": {
                "default": "Alt+Shift+S"
            },
            "description": "Shortkey 1"
        },
        "ShortKey_2": {
            "suggested_key": {
                "default": "Alt+Shift+Z"
            },
            "description": "Shortkey 2"
        },
        "ShortKey_3": {
            "suggested_key": {
                "default": "Alt+Shift+X"
            },
            "description": "Shortkey 3"
        },
        "ShortKey_4": {
            "suggested_key": {
                "default": "Alt+Shift+O"
            },
            "description": "Shortkey 4"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}