Salesforce Navigator
This extension helps you get to any salesforce page quickly. Just type in what you need to do. * 0.8.3 * various little bug fixes…
Salesforce Navigator क्या है?
Salesforce Navigator Daniel Nakov द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension helps you get to any salesforce page quickly. Just type in what you need to do. * 0.8.3 * various little bug fixes…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Salesforce Navigator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension helps you get to any salesforce page quickly. Just type in what you need to do.
* 0.8.3
* various little bug fixes
* 0.8.2
* @koenwesselman -- Add support for synonyms to allow finding of 'New' and 'List' based on only Developer Name of Custom Object (https://github.com/dnakov/force-navigator/pull/47)
* 0.8.1
* bug fix for 'URL No Longer Exists page' on mouse click
* 0.8.0
* @willemmulder -- bind ESC globally so that it closes the search box
* @koenwesselman -- added Login As functionality! Type Login As, hit enter, select a user.
* 0.7.2
* added all of links in setup, should be no more missing ones
* 0.7.1
* new look
* 0.6.5
* (initial) support for cloudforce.com domains
* added 1hr expiration on the list of stuff to prevent stale data, it will refetch automatically after that
* 0.5.27
* should actually properly fetch stuff on login now...
* 0.5.26
* (re)fetch everything upon login. in response to the issue with missing List/New commands
* changed default shortcut to ctrl+shift+space
* 0.5.25 -- fixed a bug with refresh metadata not working and redirecting to undefined
* 0.5.24 -- open new tabs with ctrl/cmd/shift + enter, or with regular cmd/ctrl/whatever + click
Github: https://github.com/dnakov/force-navigator
@dnak0v, @wes1278 and @silverlinecrm on twitter.
- All objects list views and create new pages are available (even for objects that don't have tabs). Type in "List एक्सटेंशन की मूल जानकारी
| नाम | |
| ID | ecjmdlggbilopfkkhggmgebbmbiklcdo |
| आधिकारिक URL | https://chrome.google.com/webstore/detail/salesforce-navigator/ecjmdlggbilopfkkhggmgebbmbiklcdo |
| विवरण | This extension helps you get to any salesforce page quickly. Just type in what you need to do. * 0.8.3 * various little bug fixes… |
| फ़ाइल का आकार | 67.47 KB |
| स्थापना संख्या | 20,000 |
| वर्तमान संस्करण | 0.8.3 |
| अंतिम अपडेट | 2016-10-18 |
| प्रकाशन तिथि | 2016-10-18 |
| रेटिंग | 4.64/5 कुल 145 रेटिंग्स |
| डेवलपर | Daniel Nakov |
| भुगतान के प्रकार | free |
| समर्थित भाषाएँ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Salesforce Navigator",
"version": "0.8.3",
"manifest_version": 2,
"default_locale": "en",
"browser_action": {
"default_icon": "images\/38-white.png"
},
"background": {
"scripts": [
"scripts\/background.js"
],
"persistent": true
},
"icons": {
"128": "images\/128-white.png"
},
"web_accessible_resources": [
"images\/ajax-loader.gif",
"images\/128.png"
],
"description": "",
"content_scripts": [
{
"css": [
"styles\/main.css"
],
"matches": [
"https:\/\/*.force.com\/*",
"https:\/\/*.salesforce.com\/*",
"https:\/\/*.cloudforce.com\/*"
],
"js": [
"scripts\/jquery.js",
"scripts\/mousetrap.min.js",
"scripts\/forceTooling.js",
"scripts\/main.js",
"scripts\/popup.js"
],
"run_at": "document_end"
}
],
"permissions": [
"https:\/\/*.force.com\/*",
"https:\/\/*.salesforce.com\/*",
"https:\/\/*.cloudforce.com\/*",
"storage"
]
} | |