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".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Salesforce Hidden Field Editor
قم بتنزيل ملفات الامتداد Salesforce Hidden Field Editor بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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" ] } |