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…

Wat is Render Selection?

Render Selection is een Chrome-extensie ontwikkeld door michaelstratman, en de belangrijkste functie 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…".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Render Selection

Download Render Selection-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Render Selection Render Selection
ID jcmgcgddggonhfmkjkogkmifcfmkmgfg
Officiële URL https://chromewebstore.google.com/detail/render-selection/jcmgcgddggonhfmkjkogkmifcfmkmgfg
Beschrijving Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have…
Bestandsgrootte 351 KB
Aantal Installaties 18
Huidige Versie 0.5
Laatst Bijgewerkt 2013-05-08
Publicatiedatum 2013-05-08
Beoordeling 4.00/5 Totaal 3 Beoordelingen
Ontwikkelaar michaelstratman
Betalingswijze free
Extensiewebsite https://github.com/michaelstratman/RenderSelection
Ondersteunde Talen 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
}