Salesforce Page Optimizer

Analyze, debug, and improve the performance of your Lightning application (Developer Preview)

Salesforce Page Optimizer란 무엇입니까?

Salesforce Page Optimizer은(는) Salesforce에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Analyze, debug, and improve the performance of your Lightning application (Developer Preview)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Salesforce Page Optimizer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The Salesforce Page Optimizer (Developer Preview) analyzes your lightning based community/apps and identifies performance optimization opportunites. Use the information to refine your design and improve performance for your members.

Installation and usage of this extension is covered by the EULA: https://secure2.sfdcstatic.com/assets/pdf/misc/salesforce-community-eula-ofs-page-optimizer.pdf

Check out the Settings > Privacy page for more information on what data is gathered/used by this extension.                    

확장 프로그램 기본 정보

이름 Salesforce Page Optimizer Salesforce Page Optimizer
ID alkcnclapbnefkodhbkpifdkceldogka
공식 URL https://chromewebstore.google.com/detail/salesforce-page-optimizer/alkcnclapbnefkodhbkpifdkceldogka
설명 Analyze, debug, and improve the performance of your Lightning application (Developer Preview)
파일 크기 2.24 MB
설치 횟수 8,773
현재 버전 2.1.0
최근 업데이트 2023-11-06
출시 날짜 2019-12-28
평점 4.60/5 총 15 개의 평점
개발자 Salesforce
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://releasenotes.docs.salesforce.com/en-us/summer17/release-notes/rn_networks_performance_tool.htm
개인정보 보호 정책 페이지 URL http://www.salesforce.com/company/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Salesforce Page Optimizer",
    "short_name": "PO",
    "author": "Salesforce",
    "description": "Analyze, debug, and improve the performance of your Lightning application (Developer Preview)",
    "version": "2.1.0",
    "icons": {
        "16": "images\/icons\/icon_256.png",
        "48": "images\/icons\/icon_256.png",
        "96": "images\/icons\/icon_256.png",
        "128": "images\/icons\/icon_256.png",
        "256": "images\/icons\/icon_256.png",
        "512": "images\/icons\/icon_256.png"
    },
    "background": {
        "service_worker": "dist\/background.js",
        "type": "module"
    },
    "sandbox": {
        "pages": [
            "sandbox.html"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "match_about_blank": false,
            "matches": [
                ""
            ],
            "js": [
                "dist\/content.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/*.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; worker-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
    },
    "action": {
        "default_icon": {
            "16": "images\/icons\/icon_256.png",
            "20": "images\/icons\/icon_256.png",
            "40": "images\/icons\/icon_256.png",
            "48": "images\/icons\/icon_256.png",
            "96": "images\/icons\/icon_256.png",
            "128": "images\/icons\/icon_256.png",
            "256": "images\/icons\/icon_256.png",
            "512": "images\/icons\/icon_256.png"
        },
        "default_popup": "viewer.html?width=800px&height=600px"
    },
    "permissions": [
        "scripting",
        "activeTab",
        "storage",
        "contextMenus",
        "webRequest"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}