Salesforce Lightning to Classic URL

Fixes Lightning URLs for Classic only users

什麼是Salesforce Lightning to Classic URL?

Salesforce Lightning to Classic URL是由brettgil開發的Chrome擴展程式,該擴展的主要功能是“Fixes Lightning URLs for Classic only users”。

擴展截圖

screenshot

下載Salesforce Lightning to Classic URL擴展crx文件

下載Salesforce Lightning to Classic URL擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Allows Salesforce Classic only users to paste Lightning URLs and be properly redirected to the classic url instead of the Access Denied screen.  

To test, you would need to login as a classic only user.  If you have lightning access, just switching to classic wont recreate the Access Denied page.
This extension works on any object as long as the URL as a SF 18 digit ID in it. 
Ex:   https://mydomain.lightning.force.com/lightning/r/Opportunity/0062G12345g8FK9QAM/view  will get redirected to https://mydomain.my.salesforce.com/0062G12345g8FK9QAM 

*NOTE: URLs that don't have an 18 digit ID like the Opportunities Homepage (https://mydomain.lightning.force.com/lightning/o/Opportunity/list?filterName=Recent) will still fail because the extension can't know what the correct url to go is: https://mydomain.my.salesforce.com/006?fcf=00B12345000uLr4  <-- Opportunities Recent list page   (No one should really be sharing these kinds of page links anyway but Im sure it happens)    

How to test: (before installing plugin (if already installed turn it off via the extensions chrome page - chrome://extensions/ )
 - Navigate to a specific lightning detail record page
 - Copy the lightning URL from the browser
 - Login as a classic only user 
 - Paste lightning URL > Enter
 - This should result in the Access Denied page
 - Install / turn on extension
 - Paste lightning URL > Enter
 - Should be redirected to Classic record page                    

擴展基本資訊

名稱 Salesforce Lightning to Classic URL Salesforce Lightning to Classic URL
ID efkiamgopipogmbiedakafjdogfcipap
官方網址 https://chromewebstore.google.com/detail/salesforce-lightning-to-c/efkiamgopipogmbiedakafjdogfcipap
簡介 Fixes Lightning URLs for Classic only users
檔案大小 80.35 KB
安裝次數 3,333
目前版本 1.1
更新時間 2021-07-29
上架時間 2020-06-30
評分 5.00/5 共 1 次評分
開發者 brettgil
電子郵箱 [email protected]
付費類型 free
說明頁面URL https://github.com/brettgil/Salesforce-Lightning-to-Classic-URL
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Salesforce Lightning to Classic URL",
    "version": "1.1",
    "description": "Fixes Lightning URLs for Classic only users",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*.lightning.force.com\/*",
        "*:\/\/*.salesforce.com\/*"
    ],
    "icons": {
        "16": "Lightning-Classic-128.png",
        "48": "Lightning-Classic-128.png",
        "128": "Lightning-Classic-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "manifest_version": 2
}