Salesforce Record Query

Extension that allows you to query additional fields on the record

Salesforce Record Queryคืออะไร?

Salesforce Record Query เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jerome.d.russ และคุณลักษณะหลักของมันคือ "Extension that allows you to query additional fields on the record"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Salesforce Record Query

ดาวน์โหลดไฟล์ส่วนขยาย Salesforce Record Query ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Get all the fields tied to the record you are looking at. Instead of adding a field to the page layout, use this extension to quickly view all the fields for the record!

Changes:

v 0.3.2 - November 14, 2016

Added error handling for Ajax calls

v 0.3.1 - November 8, 2016

Fixed query of objects with a large number of fields. Used to timeout. Now completes.

v 0.3 - November 6, 2016

Format of field based on input type: 
References, Ids, and urls are now links
Currency fields are formatted as USD $0.00
String, text areas, int, double, and picklist are simple inputs

Changed url matcher to look for force in the domain and at least 15 characters in the url (simple check for an id)

Fixed issue where some values were not returning from query

v 0.2.1 - June 2, 2016

Only update fields if a valid value
Note: REST API returns all fields but only populates the ones you queried for

v 0.2 - June 2, 2016

Break query in to multiple calls, eliminating size error for large objects
Fields are now read only
Fields are sorted by API name
If field is not populated (either null or empty), placeholder text of 'empty' is entered

v 0.1 - May 30, 2016

Released!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Salesforce Record Query Salesforce Record Query
ID ckdbkebfmkgckhmiojglehdgfdbpkijp
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/salesforce-record-query/ckdbkebfmkgckhmiojglehdgfdbpkijp
คำอธิบาย Extension that allows you to query additional fields on the record
ขนาดไฟล์ 136 KB
จำนวนการติดตั้ง 18
เวอร์ชันปัจจุบัน 0.3.2
อัปเดตครั้งล่าสุด 2016-11-14
วันที่เผยแพร่ 2016-11-14
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา jerome.d.russ
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Salesforce Record Query",
    "version": "0.3.2",
    "manifest_version": 2,
    "description": "Extension that allows you to query additional fields on the record",
    "icons": {
        "16": "images\/icon16__c.png",
        "128": "images\/icon128__c.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "19": "images\/icon19__c.png",
            "38": "images\/icon__c.png"
        },
        "default_title": "Force Query",
        "default_popup": "popup.build.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.force.com\/*",
                "https:\/\/*.salesforce.com\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "activeTab",
        "declarativeContent"
    ]
}