Salesforce.com Sandbox Favicon Extension
Adds an "S" to the standard Salesforce.com cloud favicon for all sandbox tabs in a Chrome window.
Hvad er Salesforce.com Sandbox Favicon Extension?
Salesforce.com Sandbox Favicon Extension er en Chrome-udvidelse udviklet af Joe Ferraro, og dens hovedfunktion er "Adds an "S" to the standard Salesforce.com cloud favicon for all sandbox tabs in a Chrome window.".
Udvidelsesskærmbilleder
Download Salesforce.com Sandbox Favicon Extension-udvidelses-CRX-fil
Download Salesforce.com Sandbox Favicon Extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Superimposes an "S" on the standard Salesforce.com cloud favicon for all sandbox tabs in a Chrome window. UPDATE: also adds a prefix to the Salesforce.com tab, e.g.: (na13) Account: ABC Textiles UPDATE 2: pod prefix in the tab title is now optional (off by default). right click the icon and select "options" to enable/disable the server pod option.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | nkfllgjejgfgcddfccnijhndhdmjkamf |
Officiel URL | https://chrome.google.com/webstore/detail/salesforcecom-sandbox-fav/nkfllgjejgfgcddfccnijhndhdmjkamf |
Beskrivelse | Adds an "S" to the standard Salesforce.com cloud favicon for all sandbox tabs in a Chrome window. |
Filstørrelse | 40.93 KB |
Antal Installationer | 3,000 |
Nuværende Version | 1.6 |
Senest Opdateret | 2015-07-20 |
Udgivelsesdato | 2015-07-20 |
Bedømmelse | 4.72/5 Samlet 64 Bedømmelser |
Udvikler | Joe Ferraro |
Betalingsmetode | free |
Hjælpeside-URL | https://github.com/joeferraro/sfdc_sbox_chrome_extension |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Salesforce.com Sandbox Favicon Extension", "version": "1.6", "description": "Adds an \"S\" to the standard Salesforce.com cloud favicon for all sandbox tabs in a Chrome window.", "browser_action": { "default_icon": "salesforce.png" }, "permissions": [ "tabs", "storage" ], "options_page": "options.html", "content_scripts": [ { "matches": [ "https:\/\/*.salesforce.com\/*", "https:\/\/*.visual.force.com\/*" ], "js": [ "jquery.js", "contentscript.js" ] } ] } |