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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
}