Salesforce Case Search
Searches for cases using the case number.
Salesforce Case Search क्या है?
Salesforce Case Search timothygentetobrien द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Searches for cases using the case number."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Salesforce Case Search एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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'" } |