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 là gì?

Render Selection là một tiện ích mở rộng Chrome được phát triển bởi michaelstratman, và tính năng chính của nó là "Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Render Selection

Tải xuống các tệp mở rộng Render Selection dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Render Selection Render Selection
ID jcmgcgddggonhfmkjkogkmifcfmkmgfg
URL Chính Thức https://chromewebstore.google.com/detail/render-selection/jcmgcgddggonhfmkjkogkmifcfmkmgfg
Mô tả Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have…
Kích Thước Tệp 351 KB
Số Lần Cài Đặt 18
Phiên Bản Hiện Tại 0.5
Cập Nhật Lần Cuối 2013-05-08
Ngày Phát Hành 2013-05-08
Đánh Giá 4.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển michaelstratman
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/michaelstratman/RenderSelection
Ngôn Ngữ Được Hỗ Trợ 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
}