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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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
}