Salesforce Case Search

Searches for cases using the case number.

Salesforce Case Searchคืออะไร?

Salesforce Case Search เป็นส่วนขยายของ Chrome ที่พัฒนาโดย timothygentetobrien และคุณลักษณะหลักของมันคือ "Searches for cases using the case number."

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

screenshot
screenshot

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

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

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

                        The Salesforce Case Search extension allows users to search for cases within Salesforce.

This will enable users to bypass the Salesforce indexing, which causes issues when searching for newly submitted cases.

**NEW**
You can now search for cases using the reference that is added to emails.

E.G; If you use this: [ ref:_00D80Khmy._500C0cHve3:ref ]

Which can be found within case emails and subjects. Or you can search using the cut down version of: 500C0cHve3:ref.

**Now supporting the following languages**
English
English (Great Britain)
English (USA)
Spanish
Spanish (Latin America and Caribbean)
Filipino
Italian
Polish
Portuguese (Brazil)
Portuguese (Portugal)
Romanian
Russian
Chinese (Taiwan)

There are more still to come! However if you fancy submitting a translation or if you notice an issue with a translation please do get in contact.                    

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

ชื่อ Salesforce Case Search Salesforce Case Search
ID oemfnjmgjmefjiomafgnengjmebfajif
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/salesforce-case-search/oemfnjmgjmefjiomafgnengjmebfajif
คำอธิบาย Searches for cases using the case number.
ขนาดไฟล์ 40.75 KB
จำนวนการติดตั้ง 56
เวอร์ชันปัจจุบัน 6.1
อัปเดตครั้งล่าสุด 2022-07-12
วันที่เผยแพร่ 2017-02-01
คะแนน 4.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา timothygentetobrien
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en,en-GB,en-US,fil,es,es-419,it,pl,pt-BR,pt-PT,ro,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "6.1",
    "browser_action": {
        "default_icon": "salesforce.png",
        "name": "Click to search"
    },
    "background": {
        "scripts": [
            "caseSearch.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "connection.js"
            ],
            "matches": [
                "*:\/\/*.salesforce.com\/",
                "*:\/\/*.force.com\/"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "icons": {
        "16": "salesforce.png",
        "48": "salesforce.png",
        "128": "salesforce.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}