Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mysticatea/yammer-for-developers
[Chrome Extension] The code formater and highlighter in Yammer's messages.
https://github.com/mysticatea/yammer-for-developers
chat chrome-extension highlighter sns yammer
Last synced: about 2 months ago
JSON representation
[Chrome Extension] The code formater and highlighter in Yammer's messages.
- Host: GitHub
- URL: https://github.com/mysticatea/yammer-for-developers
- Owner: mysticatea
- License: mit
- Created: 2012-11-06T10:17:10.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2017-02-27T12:18:42.000Z (almost 8 years ago)
- Last Synced: 2024-05-02T06:14:43.103Z (8 months ago)
- Topics: chat, chrome-extension, highlighter, sns, yammer
- Language: JavaScript
- Size: 255 KB
- Stars: 5
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ![y4d](src/icon_128.png) Yammer for Developers (y4d)
y4d is [Google Chrome Extension](https://developer.chrome.com/extensions/) that works on [Yammer](https://yammer.com/).
y4d provides syntax highlight for Yammer messages.Before is:
![Before](https://dl.dropbox.com/u/5739705/y4d/before.png)After is:
![After](https://dl.dropbox.com/u/5739705/y4d/after.png)## 💿 Installation
From Chrome Web Store:
- [y4d - Chrome Web Store](https://chrome.google.com/webstore/detail/y4d/emnacjcchajajfmcfhgdfjhodkipafdh)
## 📖 Usage
* You can decorate your messages.
* `*bold*`
* `/italic/`
* `_under line_`
* `-through line-`
*\`small code\`
* You can use the notation like GitHub for highlighted source codes.
\`\`\`js
var hello = "world";
\`\`\`## ❤ Special Thanks
y4d is using [highlight.js](https://highlightjs.org/) for the syntax highlighting.
## 💪 Contributing
Welcome to contributing!
Please use issues/PRs of GitHub.### Development tools
This repository has some npm-scripts.
- `npm run build` creates this package into `/y4d`. You can load this `y4d` directory as a chrome extension by Chrome developer tools.
- `npm run clean` removes temporary directories.
- `npm run coverage` opens the coverage report of the previous test by your default browser.
- `npm run watch` creates this package into `/y4d` on every update of source code.
- `npm test` runs unit tests.