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…

什麼是Render Selection?

Render Selection是由michaelstratman開發的Chrome擴展程式,該擴展的主要功能是“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

下載Render Selection擴展crx文件

下載Render Selection擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Render Selection Render Selection
ID jcmgcgddggonhfmkjkogkmifcfmkmgfg
官方網址 https://chromewebstore.google.com/detail/render-selection/jcmgcgddggonhfmkjkogkmifcfmkmgfg
簡介 Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have…
檔案大小 351 KB
安裝次數 18
目前版本 0.5
更新時間 2013-05-08
上架時間 2013-05-08
評分 4.00/5 共 3 次評分
開發者 michaelstratman
付費類型 free
擴展官網 https://github.com/michaelstratman/RenderSelection
支援的語言 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
}