ImgConverter is browser extension that converts form image of markdown notation to img tag(<img>
) when you upload images
- Chrome Extensions: ImgConverter
- Firefox ADD-ONS: ImgConverter
- PNG (.png)
- JPEG (.jpg)
- GIF (.gif)
- Javascript
- node(v12.1.0)
- npm(v6.9.0)
- karma(jasmine)
- Github
- esa
- Docbase
etc.
It's simple.π¨βπ»
- Upload images to issue or pull request or comment on Github
- Select markdown image text(Optional)
- Tap ImgConverter icon
- Converted
<img>
!!
You can set default values for width and height of <img>
on option page.
- Right click on ImgConverter icon and then tap
[Options]
2. Show options page
// before
![title](https://user-images.githubusercontent.com/test.png)
// after
// Default value is `width=50%`
<img src=https://user-images.githubusercontent.com/test.png width=50%>
Input width=200px
.
// before
![title](https://user-images.githubusercontent.com/test.png)
// after
// Default value is `width=200px`
<img src=https://user-images.githubusercontent.com/test.png width=200px>
Input height=200px
// before
![title](https://user-images.githubusercontent.com/test.png)
// after
// Default value is `height=200px`
<img src=https://user-images.githubusercontent.com/test.png height=200px>
Input width=200px
, height=200px
// before
![title](https://user-images.githubusercontent.com/test.png)
// after
// default value is `width=200px height=200px`
<img src=https://user-images.githubusercontent.com/test.png width=200px height=200px>
If you discover problem or have opinions, please let me know through Github issuesπββοΈ
funzin, [email protected]
ImgConverter is available under the MIT license. See the LICENSE file for more info.