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…

Apa itu Render Selection?

Render Selection adalah ekstensi Chrome yang dikembangkan oleh michaelstratman, dan fitur utamanya adalah "Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have…".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Render Selection

Unduh file ekstensi Render Selection dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Render Selection Render Selection
ID jcmgcgddggonhfmkjkogkmifcfmkmgfg
URL Resmi https://chromewebstore.google.com/detail/render-selection/jcmgcgddggonhfmkjkogkmifcfmkmgfg
Deskripsi Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have…
Ukuran File 351 KB
Jumlah Instalasi 18
Versi Saat Ini 0.5
Terakhir Diperbarui 2013-05-08
Tanggal Publikasi 2013-05-08
Penilaian 4.00/5 Total 3 Penilaian
Pengembang michaelstratman
Tipe Pembayaran free
Situs Ekstensi https://github.com/michaelstratman/RenderSelection
Bahasa yang Didukung 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
}