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…
Was ist Render Selection?
Render Selection ist eine Chrome-Erweiterung, die von michaelstratman entwickelt wurde, und ihr Hauptmerkmal ist "Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have…".
Erweiterungsscreenshots
Render Selection-Erweiterungs-CRX-Datei herunterladen
Laden Sie Render Selection-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | jcmgcgddggonhfmkjkogkmifcfmkmgfg |
| Offizielle URL | https://chromewebstore.google.com/detail/render-selection/jcmgcgddggonhfmkjkogkmifcfmkmgfg |
| Beschreibung | Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have… |
| Dateigröße | 351 KB |
| Installationsanzahl | 18 |
| Aktuelle Version | 0.5 |
| Letztes Update | 2013-05-08 |
| Veröffentlichungsdatum | 2013-05-08 |
| Bewertung | 4.00/5 Insgesamt 3 Bewertungen |
| Entwickler | michaelstratman |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/michaelstratman/RenderSelection |
| Unterstützte Sprachen | 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
} | |