Render Selection
Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have…
Что такое Render Selection?
Render Selection - это расширение Chrome, разработанное michaelstratman, и его основная функция - "Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have…".
Снимки экрана расширения
Скачать файл CRX расширения Render Selection
Скачайте файлы расширений Render Selection в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Render selected text as HTML using Render Selection.
This extension adds a a menu item to the context menu so that when you have text selected and you right click you can render the selected text as HTML in a new tab. Also you can right click anywhere and you'll have the option to render your clipboard in a new tab as well. Use it when viewing example html snippets on sites like stackoverflow or other sites. Основная информация о расширении
| Название | |
| ID | jcmgcgddggonhfmkjkogkmifcfmkmgfg |
| Официальный URL | https://chromewebstore.google.com/detail/render-selection/jcmgcgddggonhfmkjkogkmifcfmkmgfg |
| Описание | Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have… |
| Размер файла | 351 KB |
| Количество установок | 18 |
| Текущая Версия | 0.5 |
| Последнее Обновление | 2013-05-08 |
| Дата публикации | 2013-05-08 |
| Рейтинг | 4.00/5 Всего 3 оценок |
| Разработчик | michaelstratman |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/michaelstratman/RenderSelection |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Render Selection",
"permissions": [
"contextMenus",
"tabs",
"clipboardRead",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"version": "0.5",
"background": {
"scripts": [
"eventPage.js"
],
"persistent": false
},
"content_scripts": [
{
"js": [
"jquery.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"icons": {
"16": "icon.png"
},
"manifest_version": 2
} | |