-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1145 from jetstreamapp/feat/billing-updates
Billing updates
- Loading branch information
Showing
34 changed files
with
292 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+30.7 KB
apps/docs/docs/chrome-extension/chrome-extension-page-menu-no-record.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+39.8 KB
apps/docs/docs/chrome-extension/chrome-extension-page-menu-record.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
--- | ||
id: chrome-extension | ||
title: Chrome Extension | ||
description: The Jetstream Chrome Extension allows you to quickly access your Salesforce orgs and metadata from anywhere on the web. | ||
keywords: [salesforce, salesforce admin, salesforce developer, salesforce automation, salesforce workbench, chrome extension] | ||
sidebar_label: Chrome Extension | ||
slug: /chrome-extension | ||
--- | ||
|
||
import styles from './chrome-extension.module.css'; | ||
|
||
export function PopupLogin() { | ||
return ( | ||
<div className={styles.container}> | ||
<img src={require('./chrome-extension-login.png').default} alt="Chrome Extension popup prior to login" /> | ||
<img src={require('./chrome-extension-logged-in.png').default} alt="Chrome Extension popup after login" /> | ||
</div> | ||
); | ||
} | ||
|
||
export function PagePopupDisplay() { | ||
return ( | ||
<div className={styles.container}> | ||
<img src={require('./chrome-extension-page-button.png').default} alt="Chrome Extension page button" /> | ||
<img src={require('./chrome-extension-page-menu-no-record.png').default} alt="Chrome Extension page popup" /> | ||
<img src={require('./chrome-extension-page-menu-record.png').default} alt="Chrome Extension page record page popup" /> | ||
</div> | ||
); | ||
} | ||
|
||
export function PopupOptions() { | ||
return ( | ||
<div className={styles.container}> | ||
<img src={require('./chrome-extension-popup-options-1.png').default} alt="Chrome Extension options first" /> | ||
<img src={require('./chrome-extension-popup-options-2.png').default} alt="Chrome Extension options second" /> | ||
</div> | ||
); | ||
} | ||
|
||
:::note | ||
|
||
The Chrome Extension requires a Professional plan or higher. | ||
|
||
::: | ||
|
||
:::info | ||
|
||
The Chrome Extension is in beta. If you have any feedback or suggestions, please let us know! | ||
|
||
::: | ||
|
||
The Jetstream Chrome Extension allows you to quickly access your Salesforce orgs and metadata on any Salesforce environment without having to connect the org in Jetstream. | ||
|
||
When you use the Chrome Extension, none of your data is processed or stored by Jetstream. The Chrome Extension is a standalone tool that only interacts with the Salesforce API directly from your browser. | ||
Aside from logging in, there is not any communication with the Jetstream server. | ||
|
||
## Installation | ||
|
||
Install the Chrome Extension from the [Chrome Web Store](https://chromewebstore.google.com/detail/jetstream/nhahnhcpbhlkmpkdgbbadffnhblhlomm). | ||
|
||
Once installed, you may want to consider pinning the extension to your browser toolbar for easy access. | ||
|
||
### Logging In | ||
|
||
After installing the Chrome Extension, click on the Jetstream icon in your browser toolbar to open the popup to login. | ||
|
||
Once you are logged in, the chrome extension will indicate that you are logged in and give you some configuration options. | ||
|
||
<PopupLogin /> | ||
|
||
### Usage | ||
|
||
Visit any Salesforce page and you will see a Jetstream Icon conveniently located in the right side of the page. Click on the icon to open the Jetstream Chrome Extension. | ||
|
||
<PagePopupDisplay /> | ||
|
||
### Options | ||
|
||
You can temporarily disable the Salesforce page floating button by clicking on the Jetstream icon in the browser toolbar and toggling the "Jetstream Page Button" to the disabled position. | ||
|
||
You can also adust the floating button position, size, and opacity byt choosing the "Show Configuration Options button". | ||
|
||
<PopupOptions /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.container { | ||
display: flex; | ||
gap: 1rem; | ||
flex-wrap: wrap; | ||
} | ||
|
||
.container > img { | ||
width: 300px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.