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…”。
扩展截图
下载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. 扩展基本信息
| 名称 | |
| 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
} | |