Salesforce Case Number Insert
Inserts Case ID
Co to jest Salesforce Case Number Insert?
Salesforce Case Number Insert to rozszerzenie Chrome opracowane przez tinyBIGideas, a jego główną funkcją jest „Inserts Case ID”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Salesforce Case Number Insert
Pobierz pliki rozszerzeń Salesforce Case Number Insert w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This extension fixes an issue we found when writing emails within a case inside salesforce. This issue relates to the fact that there is no obvious way of automatically adding case numbers into the subject line. What you get instead is a very long and ugly “ref” number that follows the format [ref: :ref]. We believe this is not a very good experience for our clients and we decided to do something about it.
Podstawowe informacje o rozszerzeniu
Nazwa | Salesforce Case Number Insert |
ID | ajndbhaapjimcbdldemkhfpdichakmlo |
Oficjalny URL | https://chromewebstore.google.com/detail/salesforce-case-number-in/ajndbhaapjimcbdldemkhfpdichakmlo |
Opis | Inserts Case ID |
Rozmiar pliku | 41.08 KB |
Liczba instalacji | 21 |
Aktualna Wersja | 0.2 |
Ostatnia Aktualizacja | 2013-02-27 |
Data Publikacji | 2013-02-27 |
Ocena | 3.00/5 Łącznie 1 Oceny |
Deweloper | tinyBIGideas |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | http://adi.do |
Obsługiwane Języki | en-GB |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "background": "background.html", "content_scripts": [ { "all_frames": false, "js": [ "js\/jquery.js", "js\/salesforce.js" ], "matches": [ "http:\/\/*.salesforce.com\/*", "https:\/\/*.salesforce.com\/*" ], "run_at": "document_end" } ], "description": "Inserts Case ID", "icons": { "128": "\/images\/icon128.png", "16": "\/images\/icon16.png", "48": "\/images\/icon48.png" }, "name": "Salesforce Case Number Insert", "permissions": [ "http:\/\/*.salesforce.com\/*", "https:\/\/*.salesforce.com\/*" ], "version": "0.2", "manifest_version": 2 } |