Salesforce Hidden Field Editor

This extension is helpful for editing the fields which are not on page Layout

什么是Salesforce Hidden Field Editor?

Salesforce Hidden Field Editor是由https://mvclouds.com开发的Chrome扩展程序,该扩展的主要功能是“This extension is helpful for editing the fields which are not on page Layout”。

扩展截图

screenshot
screenshot

下载Salesforce Hidden Field Editor扩展crx文件

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

扩展使用说明

                        With the Salesforce Hidden Field Editor,  easily find and edit the fields that you care about if it is not available in page layout.
Once you have added the extension,  you can directly use the tool to access fields without putting any effort to login to that org. Quick saving is an added functionality here.

Features:
- Search fields not available in page layouts
- Editing fields
- Quick Saving
- Handy                    

扩展基本信息

名称 Salesforce Hidden Field Editor Salesforce Hidden Field Editor
ID bcdcopflkfojiiigkcioiiflgmebepbb
官方URL https://chromewebstore.google.com/detail/salesforce-hidden-field-e/bcdcopflkfojiiigkcioiiflgmebepbb
简介 This extension is helpful for editing the fields which are not on page Layout
文件大小 352 KB
安装次数 196
当前版本 1.0
更新时间 2019-09-30
上架时间 2019-09-30
开发者 https://mvclouds.com
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Salesforce Hidden Field Editor",
    "version": "1.0",
    "manifest_version": 2,
    "description": "This extension is helpful for editing the fields which are not on page Layout",
    "icons": {
        "16": "images\/icon16.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "fieldEditor",
        "default_popup": "pages\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.force.com\/*",
                "https:\/\/*.salesforce.com\/*"
            ],
            "js": [
                "scripts\/jquery.js",
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "activeTab"
    ]
}