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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://mvclouds.com และคุณลักษณะหลักของมันคือ "This extension is helpful for editing the fields which are not on page Layout"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Salesforce Hidden Field Editor

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}