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…

Vad är Render Selection?

Render Selection är en Chrome-tillägg utvecklad av michaelstratman, och dess huvudfunktion är "Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have…".

Tilläggsskärmbilder

screenshot

Ladda ner Render Selection-förlängningens CRX-fil

Ladda ner Render Selection-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Render Selection Render Selection
ID jcmgcgddggonhfmkjkogkmifcfmkmgfg
Officiell webbadress https://chromewebstore.google.com/detail/render-selection/jcmgcgddggonhfmkjkogkmifcfmkmgfg
Beskrivning Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have…
Filstorlek 351 KB
Antal Installationer 18
Aktuell Version 0.5
Senast Uppdaterad 2013-05-08
Publiceringsdatum 2013-05-08
Betyg 4.00/5 Totalt 3 Betyg
Utvecklare michaelstratman
Betalningssätt free
Tilläggswebbplats https://github.com/michaelstratman/RenderSelection
Stödda Språk 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
}