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

Selegic Switch to Classic란 무엇입니까?

Selegic Switch to Classic은(는) Selegic India Private Limited에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A tool for salesforce administrators and developers to help them switch to classic mode without any hassle in a single click"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Selegic Switch to Classic 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Selegic Switch to Classic Selegic Switch to Classic
ID ellmmiehdcccalmmdfpoeeablbpnihac
공식 URL https://chromewebstore.google.com/detail/selegic-switch-to-classic/ellmmiehdcccalmmdfpoeeablbpnihac
설명 A tool for salesforce administrators and developers to help them switch to classic mode without any hassle in a single click
파일 크기 1.65 MB
설치 횟수 88
현재 버전 1.1
최근 업데이트 2022-03-24
출시 날짜 2022-03-07
평점 4.40/5 총 5 개의 평점
개발자 Selegic India Private Limited
이메일 [email protected]
결제 유형 free
지원되는 언어 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'"
    }
}