ImgConverter
ImgConverter converts from image of markdown notation to to img tag
Что такое ImgConverter?
ImgConverter - это расширение Chrome, разработанное funzin, и его основная функция - "ImgConverter converts from image of markdown notation to to img tag".
Снимки экрана расширения
Скачать файл CRX расширения ImgConverter
Скачайте файлы расширений ImgConverter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
                        ## Overview
ImgConverter is chrome extension that converts form image of markdown notation to img tag(`![]() `) when you upload images
Please check detail information: https://github.com/funzin/ImgConverter  💁♂️
## Support image format
- PNG (.png)
- JPEG (.jpg)
- GIF(.gif)
## Confirmed services
- Github
- esa
- Docbase
etc.
## Usage
It's simple.👨💻
1. Upload images to issue or pull request or comment on Github
2. Tap ImgConverter icon
3. **Converted `
`) when you upload images
Please check detail information: https://github.com/funzin/ImgConverter  💁♂️
## Support image format
- PNG (.png)
- JPEG (.jpg)
- GIF(.gif)
## Confirmed services
- Github
- esa
- Docbase
etc.
## Usage
It's simple.👨💻
1. Upload images to issue or pull request or comment on Github
2. Tap ImgConverter icon
3. **Converted `![]() `!!**
## Options
You can set default values for width and height of `
`!!**
## Options
You can set default values for width and height of `![]() ` on option page.
1. Right click on ImgConverter icon and then tap `[Options]`
2. Show options page
### Example
#### No input
```
// before

// after
// Default value is `width=50%`
` on option page.
1. Right click on ImgConverter icon and then tap `[Options]`
2. Show options page
### Example
#### No input
```
// before

// after
// Default value is `width=50%`
 ```
#### Input only width 
Input `width=200px`.
```
// before

// after
// Default value is `width=200px`
```
#### Input only width 
Input `width=200px`.
```
// before

// after
// Default value is `width=200px`
 ```
#### Input only height
Input `height=200px`
```
// before

// after 
// Default value is `height=200px`
```
#### Input only height
Input `height=200px`
```
// before

// after 
// Default value is `height=200px`
 ```
#### Input width and height
Input `width=200px`, `height=200px`
```
// before

// after 
// default value is `width=200px height=200px`
```
#### Input width and height
Input `width=200px`, `height=200px`
```
// before

// after 
// default value is `width=200px height=200px`
 ```
## Contact
If you discover problem or have opinions, please let me know through [Github issues](https://github.com/funzin/ImgConverter/issues)💁♂️
## Author
funzin, [email protected]
## License
ImgConverter is available under the MIT license. See the [LICENSE file](https://github.com/funzin/ImgConverter/blob/master/LICENSE.md) for more info.
```
## Contact
If you discover problem or have opinions, please let me know through [Github issues](https://github.com/funzin/ImgConverter/issues)💁♂️
## Author
funzin, [email protected]
## License
ImgConverter is available under the MIT license. See the [LICENSE file](https://github.com/funzin/ImgConverter/blob/master/LICENSE.md) for more info.                     Основная информация о расширении
| Название |  | 
| ID | pkgimcoeodgcdfnidhgijpopkfhbcomm | 
| Официальный URL | https://chromewebstore.google.com/detail/imgconverter/pkgimcoeodgcdfnidhgijpopkfhbcomm | 
| Описание | ImgConverter converts from image of markdown notation to to img tag | 
| Размер файла | 19.93 MB | 
| Количество установок | 561 | 
| Текущая Версия | 0.2.1 | 
| Последнее Обновление | 2021-10-26 | 
| Дата публикации | 2020-02-20 | 
| Рейтинг | 5.00/5 Всего 7 оценок | 
| Разработчик | funzin | 
| Электронная почта | [email protected] | 
| Тип оплаты | free | 
| Официальный сайт расширения | https://github.com/funzin/ImgConverter | 
| URL страницы помощи | https://github.com/funzin/ImgConverter/issues | 
| URL страницы политики конфиденциальности | https://believed-prepared-20b.notion.site/Privacy-Policy-6eb61ce3d63d43479446f8195ad3a836 | 
| Поддерживаемые языки | en | 
| manifest.json | |
| {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ImgConverter",
    "short_name": "ImgConverter",
    "version": "0.2.1",
    "description": "ImgConverter converts from image of markdown notation to to img tag",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "src\/lib\/jquery-3.4.1.min.js",
            "src\/js\/background.js"
        ],
        "persistant": false
    },
    "browser_action": {
        "name": "convert"
    },
    "options_ui": {
        "page": "src\/html\/options.html"
    },
    "icons": {
        "16": "resource\/image\/icons\/16.png",
        "48": "resource\/image\/icons\/48.png",
        "128": "resource\/image\/icons\/128.png"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "@imgconverter"
        }
    },
    "content_security_policy": "script-src 'self'; object-src 'self'"
} | |