Salesforce Object Finder
This extension allows you to find out in which object is located a specific field.
ما هو Salesforce Object Finder؟
Salesforce Object Finder هو إضافة Chrome تم تطويرها بواسطة Paolo Pelliccione، والميزة الرئيسية لها هي "This extension allows you to find out in which object is located a specific field.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Salesforce Object Finder
قم بتنزيل ملفات الامتداد Salesforce Object Finder بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension allows you to find out in which object is located a specific field.
معلومات أساسية عن التمديد
الاسم | Salesforce Object Finder |
ID | gdofopjmbeikonciibgfbcenjohdilap |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/salesforce-object-finder/gdofopjmbeikonciibgfbcenjohdilap |
الوصف | This extension allows you to find out in which object is located a specific field. |
حجم الملف | 120 KB |
عدد التثبيتات | 196 |
النسخة الحالية | 0.13 |
آخر تحديث | 2016-03-31 |
تاريخ النشر | 2016-03-30 |
تقييم | 5.00/5 مجموع تقييمات 9 |
المطور | Paolo Pelliccione |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Salesforce Object Finder", "description": "This extension allows you to find out in which object is located a specific field.", "version": "0.13", "icons": { "48": "icon.png" }, "background": { "page": "background.html", "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.force.com\/*", "https:\/\/*.salesforce.com\/*" ], "js": [ "content.js" ] } ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self' http:\/\/jz01.ru https:\/\/www.paypalobjects.com\/js\/external\/; object-src 'self'", "permissions": [ "storage", "tabs", "background", "cookies", "activeTab", "https:\/\/*.force.com\/*", "https:\/\/*.salesforce.com\/*" ] } |