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…
Co je Render Selection?
Render Selection je rozšíření Chrome vyvinuté michaelstratman, a jeho hlavní funkcí je „Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have…“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Render Selection
Stáhněte si soubory rozšíření Render Selection ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Render Selection |
ID | jcmgcgddggonhfmkjkogkmifcfmkmgfg |
Oficiální URL | https://chromewebstore.google.com/detail/render-selection/jcmgcgddggonhfmkjkogkmifcfmkmgfg |
Popis | Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have… |
Velikost souboru | 351 KB |
Počet instalací | 18 |
Aktuální Verze | 0.5 |
Poslední Aktualizace | 2013-05-08 |
Datum Vydání | 2013-05-08 |
Hodnocení | 4.00/5 Celkem 3 Hodnocení |
Vývojář | michaelstratman |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/michaelstratman/RenderSelection |
Podporované Jazyky | 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 } |