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…

O que é Render Selection?

Render Selection é uma extensão do Chrome desenvolvida por michaelstratman, e sua principal característica é "Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have…".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Render Selection

Baixe arquivos de extensão Render Selection no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Render Selection Render Selection
ID jcmgcgddggonhfmkjkogkmifcfmkmgfg
URL Oficial https://chromewebstore.google.com/detail/render-selection/jcmgcgddggonhfmkjkogkmifcfmkmgfg
Descrição Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have…
Tamanho do Arquivo 351 KB
Contagem de Instalações 18
Versão Atual 0.5
Última Atualização 2013-05-08
Data de Publicação 2013-05-08
Classificação 4.00/5 Total de 3 Avaliações
Desenvolvedor michaelstratman
Tipo de Pagamento free
Site da Extensão https://github.com/michaelstratman/RenderSelection
Idiomas Suportados 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
}