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…
Cos'è Render Selection?
Render Selection è un'estensione di Chrome sviluppata da michaelstratman, e la sua funzione principale è "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 dell'Estensione
Scarica il file CRX dell'estensione Render Selection
Scarica i file di estensione Render Selection in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | jcmgcgddggonhfmkjkogkmifcfmkmgfg |
| URL Ufficiale | https://chromewebstore.google.com/detail/render-selection/jcmgcgddggonhfmkjkogkmifcfmkmgfg |
| Descrizione | Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have… |
| Dimensione del File | 351 KB |
| Conteggio Installazioni | 18 |
| Versione Corrente | 0.5 |
| Ultimo Aggiornamento | 2013-05-08 |
| Data di Pubblicazione | 2013-05-08 |
| Valutazione | 4.00/5 Totale 3 Valutazioni |
| Sviluppatore | michaelstratman |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/michaelstratman/RenderSelection |
| Lingue Supportate | 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
} | |