Salesforce Lightning to Classic URL
Fixes Lightning URLs for Classic only users
Salesforce Lightning to Classic URL क्या है?
Salesforce Lightning to Classic URL brettgil द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Fixes Lightning URLs for Classic only users"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Salesforce Lightning to Classic URL एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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 } |