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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย michaelstratman และคุณลักษณะหลักของมันคือ "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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Render Selection

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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
}