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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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 फ़ाइल डाउनलोड करें

crx प्रारूप में Render Selection एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
}