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…

What is Render Selection?

Render Selection is a Chrome extension developed by michaelstratman, and its main feature is "Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have…".

Extension Screenshots

screenshot

Download Render Selection Extension CRX File

Download Render Selection extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Render Selection Render Selection
ID jcmgcgddggonhfmkjkogkmifcfmkmgfg
Official URL https://chromewebstore.google.com/detail/render-selection/jcmgcgddggonhfmkjkogkmifcfmkmgfg
Description Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have…
File Size 351 KB
Installation Count 18
Current Version 0.5
Last Updated 2013-05-08
Publish Date 2013-05-08
Rating 4.00/5 Total 3 Ratings
Developer michaelstratman
Payment Type free
Extension Website https://github.com/michaelstratman/RenderSelection
Supported Languages 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
}