Page Layout Field Extractor - Salesforce

Tool to get object's page layout fields in csv...

What is Page Layout Field Extractor - Salesforce?

Page Layout Field Extractor - Salesforce is a Chrome extension developed by Mohit Jangid, and its main feature is "Tool to get object's page layout fields in csv...".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Page Layout Field Extractor - Salesforce Extension CRX File

Download Page Layout Field Extractor - Salesforce extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension helps you to extract salesforce object page layout fields.                    

Extension Basic Information

Name Page Layout Field Extractor - Salesforce Page Layout Field Extractor - Salesforce
ID eedjhgjbggkchfldapnkllibnadaemib
Official URL https://chromewebstore.google.com/detail/page-layout-field-extract/eedjhgjbggkchfldapnkllibnadaemib
Description Tool to get object's page layout fields in csv...
File Size 8.64 KB
Installation Count 310
Current Version 0.1
Last Updated 2023-04-09
Publish Date 2023-04-09
Developer Mohit Jangid
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Page Layout Field Extractor - Salesforce",
    "version": "0.1",
    "author": "Mohit Jangid",
    "description": "Tool to get object's page layout fields in csv...",
    "host_permissions": [
        "https:\/\/*.force.com\/*",
        "https:\/\/*.salesforce.com\/*"
    ],
    "permissions": [
        "tabs",
        "cookies"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.force.com\/*",
                "https:\/\/*.salesforce.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_popup": "index.html",
        "default_title": "click to open popup..."
    },
    "icons": {
        "48": "icons\/icon48.png"
    }
}