https://github.com/ringcentral/chrome-extension-glip-salesforce
Glip Salesforce Chrome extension
https://github.com/ringcentral/chrome-extension-glip-salesforce
Last synced: about 1 year ago
JSON representation
Glip Salesforce Chrome extension
- Host: GitHub
- URL: https://github.com/ringcentral/chrome-extension-glip-salesforce
- Owner: ringcentral
- Created: 2020-02-21T18:45:09.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-10-17T17:38:42.000Z (over 1 year ago)
- Last Synced: 2024-10-19T14:35:25.729Z (over 1 year ago)
- Language: TypeScript
- Homepage: https://chrome.google.com/webstore/detail/glip-salesforce/gcmccmiceedebolmgjddhklghkaejbei
- Size: 38.5 MB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RingCentral Team Messaging Salesforce Chrome extension
The idea is: for each Salesforce ticket, there should be a RingCentral Team Messaging team.
If there is no team, provide a button to create the team; if there is a team, provide links to navigate to the team.
[Install it from the Chrome Web Store](https://chrome.google.com/webstore/detail/glip-salesforce/gcmccmiceedebolmgjddhklghkaejbei)
## Background information
Originally this project was hosted at github.com/tylerlong/chrome-extension-glip-salesforce and it is kind of a personal project.
Later I got some feedbacks that it's not good to use my personal GitHub Pages domain name. I moved this project to github.com/ringcentral/chrome-extension-glip-salesforce and it became an "official" project.
## For developers
### Setup
```
yarn install
```
### Start the web site in dev mode
```
yarn serve
```
### Build the web site for prod
```
yarn build
```
Built files are in `docs` folder. It is a static website which can be hosted by GitHub Pages.
### Release the Chrome extension
```
yarn release
```
Distributable files are located in `chrome_extension` folder. You can compress and upload it to Chrome Web Store.
### About the source code
Source code for the website is located in `src` folder. It is a pure frontend React app.
Source code for the chrome extension is in `content.js` file.