Selegic Switch to Classic

A tool for salesforce administrators and developers to help them switch to classic mode without any hassle in a single click

Vad är Selegic Switch to Classic?

Selegic Switch to Classic är en Chrome-tillägg utvecklad av Selegic India Private Limited, och dess huvudfunktion är "A tool for salesforce administrators and developers to help them switch to classic mode without any hassle in a single click".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Selegic Switch to Classic-förlängningens CRX-fil

Ladda ner Selegic Switch to Classic-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        An Accessibility tool for salesforce administrators, developers and users to help them switch to classic mode without any hassle. This is very similar to how switch to lightning works. 

The record detail page turns from lightning view mode to classic view mode in a single click.                    

Grundläggande Information om Tillägg

Namn Selegic Switch to Classic Selegic Switch to Classic
ID ellmmiehdcccalmmdfpoeeablbpnihac
Officiell webbadress https://chromewebstore.google.com/detail/selegic-switch-to-classic/ellmmiehdcccalmmdfpoeeablbpnihac
Beskrivning A tool for salesforce administrators and developers to help them switch to classic mode without any hassle in a single click
Filstorlek 1.65 MB
Antal Installationer 88
Aktuell Version 1.1
Senast Uppdaterad 2022-03-24
Publiceringsdatum 2022-03-07
Betyg 4.40/5 Totalt 5 Betyg
Utvecklare Selegic India Private Limited
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Selegic Switch to Classic",
    "short_name": "Selegic Switch to Classic",
    "version": "1.1",
    "description": "A tool for salesforce administrators and developers to help them switch to classic mode without any hassle in a single click",
    "permissions": [
        "tabs"
    ],
    "icons": {
        "256": "assets\/images\/button_128.png"
    },
    "action": {
        "default_popup": "index.html?#\/popup",
        "default_title": "Selegic Switch to Classic"
    },
    "content_scripts": [
        {
            "js": [
                "contentPage.js"
            ],
            "matches": [
                "https:\/\/*.lightning.force.com\/*"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/images\/button_128.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}