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文件

下载Salesforce Page Optimizer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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:\/\/*\/*"
    ]
}